转账问题,求帮助
-
unlocked >>> transfer "y469508858" "binance-1" 5000 GXS 189540538 true
transfer "y469508858" "binance-1" 5000 GXS 189540538 true
10 assert_exception: Assert Exception
it != _keys.end():
{}
th_a wallet.cpp:687 get_private_key{"from":"y469508858","to":"binance-1","amount":"5000","asset_symbol":"GXS","memo":"189540538","broadcast":true} th_a wallet.cpp:2690 transfer
-
你这是钱包转账到币安吧?我看你钱包里面没有5000个币啊。你想问的什么问题?
-
@eagle 我换成了 金额为0.5 也还是一样的异常,感觉像是没有签名引起的。
能给个QQ 联系下你,帮帮忙吗
-
-
确实是没有签名,因为你对应帐户的私钥没导入到钱包。也就是说,从别人的帐户里转帐,会报这个错误。
你试一下从binance-1的帐户向其它帐户转帐,也是一样的错误。unlocked >>> transfer "binance-1" "y469508858" 5000 GXS 189540538 true transfer "binance-1" "y469508858" 5000 GXS 189540538 true 10 assert_exception: Assert Exception it != _keys.end(): {} th_a wallet.cpp:668 get_private_key {"from":"binance-1","to":"y469508858","amount":"5000","asset_symbol":"GXS","memo":"189540538","broadcast":true} th_a wallet.cpp:2781 transfer
发现问题了吗?
这里报错信息意思是,get_private_key报错了,钱包里找不到帐户对应的私钥。可以使用
list_my_account
查看一下当前cli_wallet中已导入的帐户。
-