Go-Ethereum
為什麼是 eth.accounts000不明確的
我正在使用
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(“新密碼”)