From d065dd2c3d005fb01590ecc82cda9c91678dfd13 Mon Sep 17 00:00:00 2001 From: johntaiko Date: Wed, 28 Aug 2024 17:35:42 +0800 Subject: [PATCH] fix(taiko_genesis): update devnet Ontake fork hight (#302) * fix: update devnet ontake hight * Update core/taiko_genesis.go Co-authored-by: Gavin Yu --------- Co-authored-by: David Co-authored-by: Gavin Yu --- core/taiko_genesis.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/taiko_genesis.go b/core/taiko_genesis.go index 26aee3c0fb..8c74d1001f 100644 --- a/core/taiko_genesis.go +++ b/core/taiko_genesis.go @@ -10,8 +10,8 @@ import ( ) var ( - InternalDevnetOntakeBlock = new(big.Int).SetUint64(374_400) - HeklaOntakeBlock = new(big.Int).SetUint64(720_000) + InternalDevnetOntakeBlock = new(big.Int).SetUint64(2) + HeklaOntakeBlock = new(big.Int).SetUint64(793_000) MainnetOntakeBlock = new(big.Int).SetUint64(374_400) )