Skip to content

Commit

Permalink
revert: set MinIncomingConfirmation to minimum value of 1
Browse files Browse the repository at this point in the history
  • Loading branch information
friedemannf committed Sep 25, 2023
1 parent cd3f24c commit 619584e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/chains/evm/config/toml/defaults/Mantle_Goerli.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ChainID = '5001'

FinalityDepth = 1
LogPollInterval = '2s'
MinIncomingConfirmations = 0
MinIncomingConfirmations = 1
# Blocks are only emitted when a transaction happens / no empty blocks
NoNewHeadsThreshold = '0'

Expand Down
2 changes: 1 addition & 1 deletion core/chains/evm/config/toml/defaults/Mantle_Mainnet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ChainID = '5000'

FinalityDepth = 1
LogPollInterval = '2s'
MinIncomingConfirmations = 0
MinIncomingConfirmations = 1
# Blocks are only emitted when a transaction happens / no empty blocks
NoNewHeadsThreshold = '0'

Expand Down
4 changes: 2 additions & 2 deletions docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3153,7 +3153,7 @@ FinalityTagEnabled = false
LogBackfillBatchSize = 1000
LogPollInterval = '2s'
LogKeepBlocksDepth = 100000
MinIncomingConfirmations = 0
MinIncomingConfirmations = 1
MinContractPayment = '0.00001 link'
NonceAutoSync = true
NoNewHeadsThreshold = '0s'
Expand Down Expand Up @@ -3230,7 +3230,7 @@ FinalityTagEnabled = false
LogBackfillBatchSize = 1000
LogPollInterval = '2s'
LogKeepBlocksDepth = 100000
MinIncomingConfirmations = 0
MinIncomingConfirmations = 1
MinContractPayment = '0.00001 link'
NonceAutoSync = true
NoNewHeadsThreshold = '0s'
Expand Down

0 comments on commit 619584e

Please sign in to comment.