Error: personal_unlockAccount method not implemented

Error: personal_unlockAccount method not implemented

我正在使用 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,并且有 10 个由 testrpc 创建的默认帐户,我想解锁其中的一个。

调用此方法时出现以下异常:

Error: RPC method personal_unlockAccount not supported.

Testrpc 没有解锁账户的功能,这是像 Geth 这样的客户端特有的。