Skip to content
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 programs/svm-spoke/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ pub mod svm_spoke {
/// Initializes a claim account for a relayer refund.
///
/// This function sets up a claim account for a relayer to claim their refund at a later time and should only be
/// used in the un-happy path where a bundle cant not be executed due to a recipient in the bundle having a blocked
/// used in the un-happy path where a bundle cannot be executed due to a recipient in the bundle having a blocked
/// or uninitialized claim ATA. The refund address becomes the "owner" of the claim_account.
///
/// ### Required Accounts:
Expand Down
2 changes: 1 addition & 1 deletion scripts/svm/executeRebalanceToHubPool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ async function executeRelayerRefundLeaf(
.accounts({ signer: signer.publicKey, instructionParams: instructionParams })
.rpc();
console.log(`Close instruction params transaction sent: ${closeInstructionParamsTx}`);
// Note we cant close the lookup table account as it needs to be both deactivated and expired at to do this.
// Note we can't close the lookup table account as it needs to be both deactivated and expired at to do this.
}

// Run the executeRebalanceToHubPool function
Expand Down
2 changes: 1 addition & 1 deletion scripts/svm/simpleFakeRelayerRepayment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ async function testBundleLogic(): Promise<void> {
.accounts({ signer: signer.publicKey, instructionParams: instructionParams })
.rpc();
console.log(`Close instruction params transaction sent: ${closeInstructionParamsTx}`);
// Note we cant close the lookup table account as it needs to be both deactivated and expired at to do this.
// Note we can't close the lookup table account as it needs to be both deactivated and expired at to do this.

// Check that the relayers got back the amount you were expecting
const relayerBalances = [];
Expand Down