From 9edb8ad6ffa0b3c17625a4037d9ac16875640a16 Mon Sep 17 00:00:00 2001 From: tony Date: Mon, 15 Aug 2022 16:58:16 +0800 Subject: [PATCH] set soft gaslimit to 30_000_000 --- cmd/thor/node/packer_loop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/thor/node/packer_loop.go b/cmd/thor/node/packer_loop.go index 1490595e4..6e45e02c7 100644 --- a/cmd/thor/node/packer_loop.go +++ b/cmd/thor/node/packer_loop.go @@ -19,7 +19,7 @@ import ( ) // gasLimitSoftLimit is the soft limit of the adaptive block gaslimit. -const gasLimitSoftLimit uint64 = 21000000 +const gasLimitSoftLimit uint64 = 30_000_000 func (n *Node) packerLoop(ctx context.Context) { log.Debug("enter packer loop")