mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-12 19:16:41 +00:00
Fix address type in js test
This commit is contained in:
parent
037772fc07
commit
231fe04f03
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ type testjethre struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *testjethre) UnlockAccount(acc []byte) bool {
|
func (self *testjethre) UnlockAccount(acc []byte) bool {
|
||||||
err := self.ethereum.AccountManager().Unlock(acc, "")
|
err := self.ethereum.AccountManager().Unlock(common.BytesToAddress(acc), "")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic("unable to unlock")
|
panic("unable to unlock")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue