Skip to content

Commit

Permalink
Node: Update governor limit for Polygon (#3739)
Browse files Browse the repository at this point in the history
  • Loading branch information
djb15 authored Jan 25, 2024
1 parent 55faa9c commit 6655a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/governor/mainnet_chains.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func chainList() []chainConfigEntry {
{emitterChainID: vaa.ChainIDEthereum, dailyLimit: 50_000_000, bigTransactionSize: 5_000_000},
{emitterChainID: vaa.ChainIDTerra, dailyLimit: 500_000, bigTransactionSize: 50_000},
{emitterChainID: vaa.ChainIDBSC, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
{emitterChainID: vaa.ChainIDPolygon, dailyLimit: 2_000_000, bigTransactionSize: 200_000},
{emitterChainID: vaa.ChainIDPolygon, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
{emitterChainID: vaa.ChainIDAvalanche, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
{emitterChainID: vaa.ChainIDOasis, dailyLimit: 500_000, bigTransactionSize: 50_000},
{emitterChainID: vaa.ChainIDAlgorand, dailyLimit: 1_000_000, bigTransactionSize: 100_000},
Expand Down

3 comments on commit 6655a42

@mrow921
Copy link

@mrow921 mrow921 commented on 6655a42 Jan 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Has this commit messed up Polygon limits? Currently (and for the past 5 hours since this commit was made) no Polygon source transactions of volume of over $50 deriving from a Portal Bridge contract are being processed (something you would not expect of a 24 hour rolling limit and especially not expect with a 2.5x to the daily limit.) Note also the failure in Wormchain upon deployment of this commit.

@mrow921
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SEJeff
Copy link
Collaborator

@SEJeff SEJeff commented on 6655a42 Jan 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mrow921 this commit is in no release and no one (not even in testnet) is currently running it.

Further evidence of this change not being live is from the wormhole dashboard where you can see the governor limit of $2m is maxed out for Polygon. @djb15's commit was explicitly to help mitigate this due to the result of the discussion in #3734

Please sign in to comment.