From 876b868a483fd9dd99554f6452ac2635bf1574e5 Mon Sep 17 00:00:00 2001 From: Jaden Foldesi Date: Fri, 23 Aug 2024 15:33:05 -0400 Subject: [PATCH] Use Finality Tag for Astar (#1329) ## Motivation following the [cherry pick for astar custom finaility from chainlink repo](https://github.com/smartcontractkit/ccip/pull/1324), need to enable it for astar ## Solution --------- Co-authored-by: Finley Decker Co-authored-by: Balamurali Gopalswami <167726375+b-gopalswami@users.noreply.github.com> --- core/chains/evm/config/toml/defaults/Astar_Mainnet.toml | 3 +-- core/chains/evm/config/toml/defaults/Astar_Shibuya.toml | 3 +-- docs/CONFIG.md | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/core/chains/evm/config/toml/defaults/Astar_Mainnet.toml b/core/chains/evm/config/toml/defaults/Astar_Mainnet.toml index 2d356d9564..87808001eb 100644 --- a/core/chains/evm/config/toml/defaults/Astar_Mainnet.toml +++ b/core/chains/evm/config/toml/defaults/Astar_Mainnet.toml @@ -1,6 +1,5 @@ ChainID = '592' -# FinalityTag will be enabled once the custom tag is implemented -# FinalityTagEnabled = true +FinalityTagEnabled = true FinalityDepth = 100 LogPollInterval = '6s' diff --git a/core/chains/evm/config/toml/defaults/Astar_Shibuya.toml b/core/chains/evm/config/toml/defaults/Astar_Shibuya.toml index 36f42b7f02..5a5df06f6f 100644 --- a/core/chains/evm/config/toml/defaults/Astar_Shibuya.toml +++ b/core/chains/evm/config/toml/defaults/Astar_Shibuya.toml @@ -1,6 +1,5 @@ ChainID = '81' -# FinalityTag will be enabled once the custom tag is implemented -# FinalityTagEnabled = true +FinalityTagEnabled = true FinalityDepth = 100 LogPollInterval = '6s' diff --git a/docs/CONFIG.md b/docs/CONFIG.md index e18abcf811..fdeb73484d 100644 --- a/docs/CONFIG.md +++ b/docs/CONFIG.md @@ -2813,7 +2813,7 @@ AutoCreateKey = true BlockBackfillDepth = 10 BlockBackfillSkip = false FinalityDepth = 100 -FinalityTagEnabled = false +FinalityTagEnabled = true LogBackfillBatchSize = 1000 LogPollInterval = '6s' LogKeepBlocksDepth = 100000 @@ -4130,7 +4130,7 @@ AutoCreateKey = true BlockBackfillDepth = 10 BlockBackfillSkip = false FinalityDepth = 100 -FinalityTagEnabled = false +FinalityTagEnabled = true LogBackfillBatchSize = 1000 LogPollInterval = '6s' LogKeepBlocksDepth = 100000