浏览代码

Support for addresses with or without 0x. Fixes #472

Maran 10 年之前
父节点
当前提交
9754e7aca7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      cmd/ethereum/main.go

+ 1 - 1
cmd/ethereum/main.go

@@ -197,7 +197,7 @@ func startEth(ctx *cli.Context, eth *eth.Ethereum) {
 		}
 		am := eth.AccountManager()
 		// Attempt to unlock the account
-		err := am.Unlock(ethutil.Hex2Bytes(split[0]), split[1])
+		err := am.Unlock(ethutil.FromHex(split[0]), split[1])
 		if err != nil {
 			utils.Fatalf("Unlock account failed '%v'", err)
 		}