From cae171ae72aab167cbd8cf14684f0aa763fbb36a Mon Sep 17 00:00:00 2001 From: David Date: Mon, 19 Feb 2024 14:56:45 +0800 Subject: [PATCH] feat(consensus): update anchor transaction gas limit (#170) --- consensus/taiko/consensus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/taiko/consensus.go b/consensus/taiko/consensus.go index 52760914a6ef..99f6be69f10d 100644 --- a/consensus/taiko/consensus.go +++ b/consensus/taiko/consensus.go @@ -31,7 +31,7 @@ var ( GoldenTouchAccount = common.HexToAddress("0x0000777735367b36bC9B61C50022d9D0700dB4Ec") TaikoL2AddressSuffix = "10001" AnchorSelector = crypto.Keccak256([]byte("anchor(bytes32,bytes32,uint64,uint32)"))[:4] - AnchorGasLimit = uint64(1_000_000) + AnchorGasLimit = uint64(250_000) ) // Taiko is a consensus engine used by L2 rollup.