diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-05-11 02:30:02 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-05-12 23:22:17 +0800 |
commit | 2c1b0ff17e020f300ed9d5a5a244f59b4febfe66 (patch) | |
tree | cafa9b03743b00d4ef902ddf3effc1734e885a89 /cmd | |
parent | fe9e95a3fd6275fe2740261d3d110c13de4aa0ce (diff) | |
download | dexon-2c1b0ff17e020f300ed9d5a5a244f59b4febfe66.tar.gz dexon-2c1b0ff17e020f300ed9d5a5a244f59b4febfe66.tar.zst dexon-2c1b0ff17e020f300ed9d5a5a244f59b4febfe66.zip |
Update key store to new spec but keep address field for now
* Also fix address types post-rebase
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/geth/admin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/admin.go b/cmd/geth/admin.go index 949a7bde0..15923c366 100644 --- a/cmd/geth/admin.go +++ b/cmd/geth/admin.go @@ -126,7 +126,7 @@ func (js *jsre) pendingTransactions(call otto.FunctionCall) otto.Value { // Add the accouns to a new set accountSet := set.New() for _, account := range accounts { - accountSet.Add(common.BytesToAddress(account.Address)) + accountSet.Add(account.Address) } //ltxs := make([]*tx, len(txs)) |