diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-04-03 03:14:25 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-05-12 23:19:39 +0800 |
commit | da9fe951da4005761a014316c46771d628dc058e (patch) | |
tree | d5344172ed915b4890d66c3cf3b4181e30589471 /xeth | |
parent | 6b23094cff77d7e485e0a2ae5698884f63c87ce7 (diff) | |
download | dexon-da9fe951da4005761a014316c46771d628dc058e.tar dexon-da9fe951da4005761a014316c46771d628dc058e.tar.gz dexon-da9fe951da4005761a014316c46771d628dc058e.tar.bz2 dexon-da9fe951da4005761a014316c46771d628dc058e.tar.lz dexon-da9fe951da4005761a014316c46771d628dc058e.tar.xz dexon-da9fe951da4005761a014316c46771d628dc058e.tar.zst dexon-da9fe951da4005761a014316c46771d628dc058e.zip |
Use common.Address type for accounts.Address
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/xeth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index 11dc506b8..74110c4ec 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -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] = common.ToHex(ac.Address) + accountAddresses[i] = ac.Address.Str() } return accountAddresses } |