Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comment #2202

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/samples/APIRequests/MultiWordConsumer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ contract MultiWordConsumer is ChainlinkClient, ConfirmedOwner {
}

/**
* @notice Request mutiple parameters from the oracle in a single transaction
* @notice Request multiple parameters from the oracle in a single transaction
*/
function requestMultipleParameters() public {
Chainlink.Request memory req = _buildChainlinkRequest(
Expand Down
12 changes: 6 additions & 6 deletions src/content/chainlink-nodes/v1/node-config.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,7 @@ PeerID = '12D3KooWMoejJznyDuEk5aX6GvbjaG12UzeornPCBNzMRqdwrFJw' # Example
TraceLogging = false # Default
```

P2P has a versioned networking stack. Currenly only `[P2P.V2]` is supported.
P2P has a versioned networking stack. Currently only `[P2P.V2]` is supported.
All nodes in the OCR network should share the same networking stack.

### IncomingMessageBufferSize
Expand Down Expand Up @@ -9508,7 +9508,7 @@ MinAttempts = 3 # Example
Enabled = false # Default
```

Enabled enables or disables automatically purging transactions that have been idenitified as terminally stuck (will never be included on-chain). This feature is only expected to be used by ZK chains.
Enabled enables or disables automatically purging transactions that have been identified as terminally stuck (will never be included on-chain). This feature is only expected to be used by ZK chains.

### DetectionApiUrl

Expand Down Expand Up @@ -9761,7 +9761,7 @@ In EIP-1559 mode, the following changes occur to how configuration works:
- All new transactions will be sent as type 0x2 transactions specifying a TipCap and FeeCap. Be aware that existing pending legacy transactions will continue to be gas bumped in legacy mode.
- `BlockHistoryEstimator` will apply its calculations (gas percentile etc) to the TipCap and this value will be used for new transactions (GasPrice will be ignored)
- `FixedPriceEstimator` will use `GasTipCapDefault` instead of `GasPriceDefault` for the tip cap
- `FixedPriceEstimator` will use `GasFeeCapDefault` instaed of `GasPriceDefault` for the fee cap
- `FixedPriceEstimator` will use `GasFeeCapDefault` instead of `GasPriceDefault` for the fee cap
- `PriceMin` is ignored for new transactions and `GasTipCapMinimum` is used instead (default 0)
- `PriceMax` still represents that absolute upper limit that Chainlink will ever spend (total) on a single tx
- `Keeper.GasTipCapBufferPercent` is ignored in EIP-1559 mode and `Keeper.GasTipCapBufferPercent` is used instead
Expand Down Expand Up @@ -10636,7 +10636,7 @@ GasLimitMultiplier scales the estimated gas limit.
MaxMsgsPerBatch = 100 # Default
```

MaxMsgsPerBatch limits the numbers of mesages per transaction batch.
MaxMsgsPerBatch limits the numbers of messages per transaction batch.

### OCR2CachePollPeriod

Expand Down Expand Up @@ -10863,7 +10863,7 @@ BlockHistoryPollPeriod is the rate to poll for blocks in the block history fee e
ComputeUnitLimitDefault = 200_000 # Default
```

ComputeUnitLimitDefault is the compute units limit applied to transactions unless overriden during the txm enqueue
ComputeUnitLimitDefault is the compute units limit applied to transactions unless overridden during the txm enqueue

### EstimateComputeUnitLimit

Expand Down Expand Up @@ -10940,7 +10940,7 @@ SyncThreshold is the number of blocks behind the best node that a node can be be
NodeIsSyncingEnabled = false # Default
```

NodeIsSyncingEnabled enables the feature to avoid sending transactions to nodes that are syncing. Not relavant for Solana.
NodeIsSyncingEnabled enables the feature to avoid sending transactions to nodes that are syncing. Not relevant for Solana.

### LeaseDuration

Expand Down