diff options
author | Determinant <[email protected]> | 2020-09-19 22:27:11 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-09-19 22:27:11 -0400 |
commit | 93a7f324c06321023e2702f7989fdfad32573793 (patch) | |
tree | 801191d49eb7b82b8328264254f96604c09c8d36 /core/genesis.go | |
parent | ad82b990891525a754ebfe9155292b23408c9652 (diff) |
apply mulit-coin universally
Diffstat (limited to 'core/genesis.go')
-rw-r--r-- | core/genesis.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/genesis.go b/core/genesis.go index e48f411..9b96480 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -268,7 +268,7 @@ func (g *Genesis) ToBlock(db ethdb.Database) *types.Block { statedb.SetState(addr, key, value) } if account.MCBalance != nil { - statedb.ForceEnableMultiCoin(addr) + //statedb.ForceEnableMultiCoin(addr) for coinID, value := range account.MCBalance { statedb.AddBalanceMultiCoin(addr, coinID, value) } |