From 39d604a8d7b65e6bff21a30b0013b012059286a1 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Thu, 2 Aug 2018 17:16:34 +0300 Subject: [PATCH] Fixed rinkeby alloc data --- nimbus/genesis.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimbus/genesis.nim b/nimbus/genesis.nim index e2a9cff6a..444954546 100644 --- a/nimbus/genesis.nim +++ b/nimbus/genesis.nim @@ -54,7 +54,7 @@ func defaultGenesisBlockForNetwork*(id: PublicNetwork): Genesis = extraData: hexToSeqByte("0x3535353535353535353535353535353535353535353535353535353535353535"), gasLimit: 16777216, difficulty: 1048576.u256, - alloc: decodePrealloc(testnetAllocData) + alloc: decodePrealloc(rinkebyAllocData) ) else: raise newException(Exception, "No default genesis for " & $id)