Go-Ethereum

為什麼是 eth.accounts000不明確的

  • December 5, 2017

我正在使用Geth 1.7控制台。我嘗試使用解鎖帳戶,personal.unlockAccount(eth.accounts[0], "{top secret password}")但失敗並出現以下錯誤: first argument must be the account to unlock.

eth.accounts[0]我懷疑錯誤可能是由於未定義的事實。

我該如何設置eth.accounts[0]?

請確保先創建一個帳戶,然後再嘗試解鎖位於eth.accounts.

要創建一個帳戶: personal.newAccount('yourPasswordForTheNewAccount')

您看到undefined是因為沒有帳戶可以解鎖。

您可能需要創建一個乙太坊帳戶。

請在 geth 控制台上使用以下命令。

personal.newAccount(“新密碼”)

引用自:https://ethereum.stackexchange.com/questions/30612