Go-Ethereum
web3.eth.personal.getAccounts() 與 web3.eth.getAccounts() 之間的區別
web3.eth.personal.getAccounts()
和 和有什麼區別web3.eth.getAccounts()
?環境
- 松露:v5.1.7
- 使用
truffle console
.
不同之處在於幕後呼叫的 RPC 方法。從文件:
web3.persal.getAccounts
通過使用提供程序並呼叫 RPC 方法返回節點控制的帳戶列表personal_listAccounts.
結果與
web3.eth.getAccounts()
呼叫 RPC 方法不同eth_accounts
。