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
Notice how it outputs 1137c1f8 => sendToken(address,address,uint256,bytes32,//) when it should output b9bfabe1 => sendToken(address,address,uint256,bytes32,bytes32)
Function linked above:
function sendToken(
address_receiver,
address_tokenAddr,
uint256_amount,
bytes32_pkx, // ephemeral public key x coordinatebytes32_ciphertext
) externalpayable {
...
}
The text was updated successfully, but these errors were encountered:
fixed it for the upcoming v0.1.1. let me know if you need it earlier and I can probably provide you an alpha.
the function signature extraction is super hacky and I do not expect that a lot of people are using it. if it turns out it is actually being used I might refactor the lexical extraction and actually use the AST.
cheers
PS: v0.1.1 will take a couple more weeks for testing.
Steps to reproduce:
1137c1f8 => sendToken(address,address,uint256,bytes32,//)
when it should outputb9bfabe1 => sendToken(address,address,uint256,bytes32,bytes32)
Function linked above:
The text was updated successfully, but these errors were encountered: