From 6218766149b7e30c61fcdf9e1fa7df7118d83e10 Mon Sep 17 00:00:00 2001 From: paologalligit Date: Wed, 8 Jan 2025 10:05:16 +0100 Subject: [PATCH] style: fix lowercase --- vm/chain_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/chain_config.go b/vm/chain_config.go index fdc9ce765..6ad7b1c19 100644 --- a/vm/chain_config.go +++ b/vm/chain_config.go @@ -23,7 +23,7 @@ func isForked(s, head *big.Int) bool { type ChainConfig struct { params.ChainConfig IstanbulBlock *big.Int `json:"istanbulBlock,omitempty"` // Istanbul switch block (nil = no fork, 0 = already on istanbul) - GalacticaBlock *big.Int `json:"GalacticaBlock,omitempty"` // Galactica switch block (nil = no fork, 0 = already on galactica) + GalacticaBlock *big.Int `json:"galacticaBlock,omitempty"` // Galactica switch block (nil = no fork, 0 = already on galactica) } // IsIstanbul returns whether num is either equal to the Istanbul fork block or greater.