Skip to content
Merged
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 src/finalizer/utils/opStack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ async function finalizeOptimismMessage(
if (requestId === undefined || requestId === 0) {
throw new Error(`Found invalid requestId ${requestId} for Blast withdrawal ${message.event.transactionHash}`);
}
// @dev The hintId parameter plays a role in our insurance mechanism that kicks in in the rare event that
// @dev The hintId parameter plays a role in our insurance mechanism that kicks in the rare event that
// ETH yield goes negative. The `findCheckpointHint` function runs a binary search in solidity to find the
// correct hint so we naively set the starting point to 1, the first index, and set the latest to the last
// queried value. The request ID for an already proven withdrawal should always be found by the following function.
Expand Down
2 changes: 1 addition & 1 deletion src/relayer/Relayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ export class Relayer {
}

/**
* For all origin chains chains, map the relayer's deposit confirmation requirements to tiered USD amounts that can be
* For all origin chains, map the relayer's deposit confirmation requirements to tiered USD amounts that can be
* filled by this relayer.
* @returns A mapping of chain ID to an array of origin chain fill limits in USD, ordered by origin chain block range.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/validateRunningBalances.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ export async function runScript(baseSigner: Signer): Promise<void> {
);
const slowFills = _buildSlowRelayRoot(bundleData.bundleSlowFillsV3).leaves;
// Compute how much the slow fill will execute by checking if any fills were sent after the slow fill amount
// was sent to the spoke pool. This would reduce the amount transferred when when the slow fill is executed.
// was sent to the spoke pool. This would reduce the amount transferred when the slow fill is executed.
const slowFillsForPoolRebalanceLeaf = slowFills.filter(
(f) => f.chainId === leaf.chainId && f.relayData.outputToken === l2Token
);
Expand Down
2 changes: 1 addition & 1 deletion src/utils/EventUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class EventManager {
}

/**
* For a given Log, mark it has having been been processed.
* For a given Log, mark it as having been processed.
* @param event A Log instance to mark processed.
* @returns void
*/
Expand Down