diff options
Diffstat (limited to 'miner')
-rw-r--r-- | miner/worker.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/worker.go b/miner/worker.go index 8698bb90d..f737be507 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -474,7 +474,7 @@ func gasprice(price *big.Int, pct int64) *big.Int { func accountAddressesSet(accounts []accounts.Account) *set.Set { accountSet := set.New() for _, account := range accounts { - accountSet.Add(common.BytesToAddress(account.Address)) + accountSet.Add(account.Address) } return accountSet } |