aboutsummaryrefslogtreecommitdiffstats
path: root/core/dao.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/dao.go')
-rw-r--r--core/dao.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dao.go b/core/dao.go
index 7e376e68a..c43899e31 100644
--- a/core/dao.go
+++ b/core/dao.go
@@ -67,7 +67,7 @@ func ApplyDAOHardFork(statedb *state.StateDB) {
}
// Move every DAO account and extra-balance account funds into the refund contract
- for _, addr := range params.DAODrainList {
+ for _, addr := range params.DAODrainList() {
statedb.AddBalance(params.DAORefundContract, statedb.GetBalance(addr))
statedb.SetBalance(addr, new(big.Int))
}