aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-05-12 23:48:21 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-05-12 23:48:21 +0800
commit231fe04f0309e588c6151e1d5a14fd5adc116bf2 (patch)
treed1361bf7099d71d990f419d72a6939fcb10c58b5 /cmd
parent037772fc0713264b53441d4956a52842f0288859 (diff)
downloadgo-tangerine-231fe04f0309e588c6151e1d5a14fd5adc116bf2.tar
go-tangerine-231fe04f0309e588c6151e1d5a14fd5adc116bf2.tar.gz
go-tangerine-231fe04f0309e588c6151e1d5a14fd5adc116bf2.tar.bz2
go-tangerine-231fe04f0309e588c6151e1d5a14fd5adc116bf2.tar.lz
go-tangerine-231fe04f0309e588c6151e1d5a14fd5adc116bf2.tar.xz
go-tangerine-231fe04f0309e588c6151e1d5a14fd5adc116bf2.tar.zst
go-tangerine-231fe04f0309e588c6151e1d5a14fd5adc116bf2.zip
Fix address type in js test
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/js_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/js_test.go b/cmd/geth/js_test.go
index 9b6d503ab..8f9859771 100644
--- a/cmd/geth/js_test.go
+++ b/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")
}