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()
|
accounts, _ := self.backend.AccountManager().Accounts()
|
||||||
accountAddresses := make([]string, len(accounts))
|
accountAddresses := make([]string, len(accounts))
|
||||||
for i, ac := range accounts {
|
for i, ac := range accounts {
|
||||||
accountAddresses[i] = ac.Address.Str()
|
accountAddresses[i] = "0x" + ac.Address.Hex() // wtf
|
||||||
}
|
}
|
||||||
return accountAddresses
|
return accountAddresses
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user