aboutsummaryrefslogtreecommitdiffstats
path: root/core/genesis.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/genesis.go')
-rw-r--r--core/genesis.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/genesis.go b/core/genesis.go
index c378c0ab2..40e8a06bf 100644
--- a/core/genesis.go
+++ b/core/genesis.go
@@ -329,6 +329,11 @@ func (g *Genesis) ToBlock(db ethdb.Database) *types.Block {
govStateHelper.IncTotalSupply(totalSupply)
}
+ // Set oracle contract.
+ for address := range vm.OracleContracts {
+ statedb.SetCode(address, []byte{0xed})
+ }
+
root := statedb.IntermediateRoot(false)
head := &types.Header{
Number: new(big.Int).SetUint64(g.Number),