Skip to content

Commit

Permalink
fix remaining places
Browse files Browse the repository at this point in the history
  • Loading branch information
infiloop2 committed Feb 7, 2024
1 parent 9c763a8 commit 5698ba7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion core/chains/evm/config/chain_scoped_ocr2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import (

func Test_ocr2Config(t *testing.T) {
evmOcrCfg := cltest.NewTestChainScopedConfig(t) //fallback.toml values
require.Equal(t, uint32(5300000), evmOcrCfg.EVM().OCR2().Automation().GasLimit())
require.Equal(t, uint32(5400000), evmOcrCfg.EVM().OCR2().Automation().GasLimit())
}
2 changes: 1 addition & 1 deletion core/config/docs/chains-evm.toml
Original file line number Diff line number Diff line change
Expand Up @@ -362,4 +362,4 @@ Order = 100 # Default

[EVM.OCR2.Automation]
# GasLimit controls the gas limit for transmit transactions from ocr2automation job.
GasLimit = 5300000 # Default
GasLimit = 5400000 # Default
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ ObservationGracePeriod = '1s'

[EVM.OCR2]
[EVM.OCR2.Automation]
GasLimit = 5300000
GasLimit = 5400000

[[EVM.Nodes]]
Name = 'primary'
Expand Down Expand Up @@ -392,7 +392,7 @@ ObservationGracePeriod = '1s'

[EVM.OCR2]
[EVM.OCR2.Automation]
GasLimit = 5300000
GasLimit = 5400000

[[EVM.Nodes]]
Name = 'foo'
Expand Down Expand Up @@ -473,7 +473,7 @@ ObservationGracePeriod = '1s'

[EVM.OCR2]
[EVM.OCR2.Automation]
GasLimit = 5300000
GasLimit = 5400000

[[EVM.Nodes]]
Name = 'bar'
Expand Down
6 changes: 3 additions & 3 deletions core/web/resolver/testdata/config-multi-chain-effective.toml
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ ObservationGracePeriod = '1s'

[EVM.OCR2]
[EVM.OCR2.Automation]
GasLimit = 5300000
GasLimit = 5400000

[[EVM.Nodes]]
Name = 'primary'
Expand Down Expand Up @@ -392,7 +392,7 @@ ObservationGracePeriod = '1s'

[EVM.OCR2]
[EVM.OCR2.Automation]
GasLimit = 5300000
GasLimit = 5400000

[[EVM.Nodes]]
Name = 'foo'
Expand Down Expand Up @@ -473,7 +473,7 @@ ObservationGracePeriod = '1s'

[EVM.OCR2]
[EVM.OCR2.Automation]
GasLimit = 5300000
GasLimit = 5400000

[[EVM.Nodes]]
Name = 'bar'
Expand Down
4 changes: 2 additions & 2 deletions docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6316,13 +6316,13 @@ Order of the node in the pool, will takes effect if `SelectionMode` is `Priority
## EVM.OCR2.Automation
```toml
[EVM.OCR2.Automation]
GasLimit = 5300000 # Default
GasLimit = 5400000 # Default
```


### GasLimit
```toml
GasLimit = 5300000 # Default
GasLimit = 5400000 # Default
```
GasLimit controls the gas limit for transmit transactions from ocr2automation job.

Expand Down

0 comments on commit 5698ba7

Please sign in to comment.