forked from cerc-io/plugeth
Correct accounts hex in XETH API
This commit is contained in:
parent
da9fe951da
commit
ac3371bcb6
@ -365,7 +365,7 @@ func (self *XEth) Accounts() []string {
|
||||
accounts, _ := self.backend.AccountManager().Accounts()
|
||||
accountAddresses := make([]string, len(accounts))
|
||||
for i, ac := range accounts {
|
||||
accountAddresses[i] = ac.Address.Str()
|
||||
accountAddresses[i] = "0x" + ac.Address.Hex() // wtf
|
||||
}
|
||||
return accountAddresses
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user