node: doubled solana governor limits
This commit is contained in:
parent
f49c86208b
commit
002de06ab5
|
@ -10,7 +10,7 @@ import (
|
|||
|
||||
func chainList() []chainConfigEntry {
|
||||
return []chainConfigEntry{
|
||||
chainConfigEntry{emitterChainID: vaa.ChainIDSolana, dailyLimit: 50_000_000, bigTransactionSize: 10_000_000},
|
||||
chainConfigEntry{emitterChainID: vaa.ChainIDSolana, dailyLimit: 100_000_000, bigTransactionSize: 10_000_000},
|
||||
chainConfigEntry{emitterChainID: vaa.ChainIDEthereum, dailyLimit: 50_000_000, bigTransactionSize: 5_000_000},
|
||||
chainConfigEntry{emitterChainID: vaa.ChainIDTerra, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
|
||||
chainConfigEntry{emitterChainID: vaa.ChainIDBSC, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
|
||||
|
|
|
@ -25,10 +25,10 @@ func TestChainDailyLimitRange(t *testing.T) {
|
|||
min_daily_limit := uint64(0)
|
||||
|
||||
/* This IS NOT a hard limit, we can adjust it up as we see fit,
|
||||
but setting something sane such that if we accidentially go
|
||||
but setting something sane such that if we accidentally go
|
||||
too high that the unit tests will make sure it's
|
||||
intentional */
|
||||
max_daily_limit := uint64(50000001)
|
||||
max_daily_limit := uint64(100_000_001)
|
||||
|
||||
// Do not remove this assertion
|
||||
assert.NotEqual(t, max_daily_limit, uint64(0))
|
||||
|
|
Loading…
Reference in New Issue