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
Attempting to send 1000 neo from genesis account to a standard address using a single node Neo3 chain (master branch). The consensus node wallet has two accounts, the node-specific account (NU78azX2nqbuDPthu5UGMaCXTVwpAkpvye) and the multi-sig account (NfC9EW6UJEbfX4TKCnqGf72AKHXUfR71ma). I am calling GetKey() on the multi-sig WalletAccount and passing it to WalletApi.Transfer. Transfer throws an exception Insufficient GAS in address: NU78azX2nqbuDPthu5UGMaCXTVwpAkpvye. That is the node-specific account address, NOT the multi-sig account address.
Stepping thru the transfer function, the exception is throwing in the TransactionManager.Sign() function. Sign is checking the gas balance, finding the gas balance to be zero and throwing.
The text was updated successfully, but these errors were encountered:
Hi @devhawk
The WalletApi.Transfer is not ready for transferring assets from a multi-sig account now. You may refer to this document to construct a transaction.
Attempting to send 1000 neo from genesis account to a standard address using a single node Neo3 chain (master branch). The consensus node wallet has two accounts, the node-specific account (
NU78azX2nqbuDPthu5UGMaCXTVwpAkpvye
) and the multi-sig account (NfC9EW6UJEbfX4TKCnqGf72AKHXUfR71ma
). I am calling GetKey() on the multi-sig WalletAccount and passing it to WalletApi.Transfer. Transfer throws an exceptionInsufficient GAS in address: NU78azX2nqbuDPthu5UGMaCXTVwpAkpvye
. That is the node-specific account address, NOT the multi-sig account address.Stepping thru the transfer function, the exception is throwing in the TransactionManager.Sign() function. Sign is checking the gas balance, finding the gas balance to be zero and throwing.
The text was updated successfully, but these errors were encountered: