You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 23, 2023. It is now read-only.
I am developing an ethereum Dapp with python. And import the ContractTranslator class easy to interact with smart contarct. I deployed a ERC223 token contract, but call transfer failed, in order to find the reason, I write test code like this:
I am developing an ethereum Dapp with python. And import the ContractTranslator class easy to interact with smart contarct. I deployed a ERC223 token contract, but call transfer failed, in order to find the reason, I write test code like this:
first is fail, second is success,
it logs the print(format: function_name, args, signed_data):
As you see, the function hash is both
be45fd62
, and I get the correct hash from remix:from source code, it call
encode_function_call
to get function hash, but the key is function name, so functiontransfer
is conflicts:pyethereum/ethereum/abi.py
Line 519 in 6d4d3e0
so it need unique key to store the data .
The text was updated successfully, but these errors were encountered: