diff --git a/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/close.ts b/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/close.ts index 31119bf58..2a03b287e 100644 --- a/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/close.ts +++ b/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/close.ts @@ -24,7 +24,9 @@ export default class extends Close { const address = new PublicKey(this.args[0]) const linkPublicKey = new PublicKey(this.flags.link || process.env.LINK) const tokenReceiver = await getAssociatedTokenAddress(linkPublicKey, signer, true) - logger.info(`This command involves a token payout. The receiver will be: ${tokenReceiver}`) + logger.info( + `This command involves a token payout. If owed tokens are unable to be paid to node operators, they will be sent to: ${tokenReceiver}`, + ) const { config, oracles } = (await program.account.state.fetch(address)) as any const [vaultAuthority] = await PublicKey.findProgramAddress( diff --git a/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/proposal/acceptProposal.ts b/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/proposal/acceptProposal.ts index f71a3e609..2b3eefca9 100644 --- a/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/proposal/acceptProposal.ts +++ b/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/proposal/acceptProposal.ts @@ -214,7 +214,9 @@ export default class AcceptProposal extends SolanaCommand { makeRawTransaction = async (signer: PublicKey) => { const linkPublicKey = new PublicKey(this.flags.link || process.env.LINK) const tokenReceiver = await getAssociatedTokenAddress(linkPublicKey, signer, true) - logger.info(`This command involves a token payout. The receiver will be: ${tokenReceiver}`) + logger.info( + `This command involves a token payout. If owed tokens are unable to be paid to node operators, they will be sent to: ${tokenReceiver}`, + ) const tx = await this.program.methods .acceptProposal(this.contractInput.offchainDigest) diff --git a/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/setBilling.ts b/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/setBilling.ts index 9cf3ac905..3d88c5eb3 100644 --- a/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/setBilling.ts +++ b/gauntlet/packages/gauntlet-solana-contracts/src/commands/contracts/ocr2/setBilling.ts @@ -74,7 +74,9 @@ export default class SetBilling extends SolanaCommand { .map((oracle) => ({ pubkey: oracle.payee, isWritable: true, isSigner: false })) const billingAC = new PublicKey(info.config.billingAccessController) - logger.info(`This command involves a token payout. The receiver will be: ${tokenReceiver}`) + logger.info( + `This command involves a token payout. If owed tokens are unable to be paid to node operators, they will be sent to: ${tokenReceiver}`, + ) const data = await this.program.methods .setBilling(new BN(this.input.observationPaymentGjuels), new BN(this.input.transmissionPaymentGjuels)) .accounts({