我正在使用nethereum(Ethereum
的.Net集成库)进行测试,尝试使用以下代码解锁testrpc上的帐户API:
var ipcClient = ClientFactory.GetClient();
var web3 = new Web3(ipcClient);
// Unlock the caller's account with the given password
var unlockResult = await web3.Personal.UnlockAccount.SendRequestAsync(publicKey, password, _accountUnlockTime);
return unlockResult;
我在powershell上执行了testrpc
,并且有一些由testrpc创建的默认帐户,并希望解锁它们。
调用此方法我得到以下异常:
Error: RPC method personal_unlockAccount not supported.
答案 0 :(得分:1)
Testrpc无法解锁帐户,这是Geth等客户的具体情况。