Procházet zdrojové kódy

Fix address type in js test

Gustav Simonsson před 10 roky
rodič
revize
231fe04f03
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      cmd/geth/js_test.go

+ 1 - 1
cmd/geth/js_test.go

@@ -45,7 +45,7 @@ type testjethre struct {
 }
 
 func (self *testjethre) UnlockAccount(acc []byte) bool {
-	err := self.ethereum.AccountManager().Unlock(acc, "")
+	err := self.ethereum.AccountManager().Unlock(common.BytesToAddress(acc), "")
 	if err != nil {
 		panic("unable to unlock")
 	}