Procházet zdrojové kódy

Fix natspec e2e test accounts type (again)

Gustav Simonsson před 10 roky
rodič
revize
fe9e95a3fd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      common/natspec/natspec_e2e_test.go

+ 1 - 1
common/natspec/natspec_e2e_test.go

@@ -84,7 +84,7 @@ type testFrontend struct {
 }
 
 func (self *testFrontend) UnlockAccount(acc []byte) bool {
-	self.ethereum.AccountManager().Unlock(acc, "password")
+	self.ethereum.AccountManager().Unlock(common.BytesToAddress(acc), "password")
 	return true
 }