From 7829166aeb236d2c3a6c8518ac317b3746f27575 Mon Sep 17 00:00:00 2001 From: buddh0 Date: Wed, 23 Apr 2025 10:52:42 +0800 Subject: [PATCH 1/2] params: double FullImmutabilityThreshold for BEP-520 --- params/network_params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/network_params.go b/params/network_params.go index 19683a6e5e..2f95ce14db 100644 --- a/params/network_params.go +++ b/params/network_params.go @@ -37,5 +37,5 @@ var ( // considered immutable (i.e. soft finality). It is used by the downloader as a // hard limit against deep ancestors, by the blockchain against deep reorgs, by // the freezer as the cutoff threshold and by clique as the snapshot trust limit. - FullImmutabilityThreshold uint64 = 90000 + FullImmutabilityThreshold uint64 = 180_000 ) From 91e77f7ea71493ce22f485c1424c279cd0aef52f Mon Sep 17 00:00:00 2001 From: buddh0 Date: Wed, 23 Apr 2025 10:55:42 +0800 Subject: [PATCH 2/2] params: double FullImmutabilityThreshold for BEP-524 --- params/network_params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/network_params.go b/params/network_params.go index 2f95ce14db..1de7245cb4 100644 --- a/params/network_params.go +++ b/params/network_params.go @@ -37,5 +37,5 @@ var ( // considered immutable (i.e. soft finality). It is used by the downloader as a // hard limit against deep ancestors, by the blockchain against deep reorgs, by // the freezer as the cutoff threshold and by clique as the snapshot trust limit. - FullImmutabilityThreshold uint64 = 180_000 + FullImmutabilityThreshold uint64 = 360_000 )