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
$ ./bin/neo-go contract invokefunction -r http://localhost:20332 -w oracle-con.wallet 0xd2a4cff31913016155e38e474a2c06d08be276cf transfer NaLbn4u9rZzk2gifu9hnPtyUbE8mtYZVmT NL8cobmLwM2R99uBPW6uBFvsua9Uzg9YzD 1000000000 "" -- NRBiGqBTmQyPY1RWM669Q9R8yssqS8YRyv 0xfc0b5a05ddde5773671dbabbb0c62461074a3a9e
Enter account NRBiGqBTmQyPY1RWM669Q9R8yssqS8YRyv password >
failed to push invocation tx: failed to send tx: Invalid Params (-32602) - - %!s(<nil>)
0xfc0b5a05ddde5773671dbabbb0c62461074a3a9e is a deployed contract that has verify with no parameters, effectively what we need is an empty witness attached to it, but it's not attached and the resulting transaction is broken:
number of signers doesn't match witnesses: 2 vs 1
(notice also that this error could've been returned from RPC server)
If we can't properly attach all witnesses, no transaction should be sent (like for proper multisig).
If we can do that, then just do that and create valid transaction.
The text was updated successfully, but these errors were encountered:
0xfc0b5a05ddde5773671dbabbb0c62461074a3a9e is a deployed contract that has
verify
with no parameters, effectively what we need is an empty witness attached to it, but it's not attached and the resulting transaction is broken:(notice also that this error could've been returned from RPC server)
The text was updated successfully, but these errors were encountered: