Skip to content

Commit e8e6e2a

Browse files
evgenikoclaude
andcommitted
cleanup: remove unused vaaSequence variable
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 4eba3b8 commit e8e6e2a

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

e2e/sendToSolanaOnChainQuote.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,11 @@ async function main() {
124124
.map(log => iface.parseLog({ topics: log.topics as string[], data: log.data }))
125125
.find(event => event?.name === 'GreetingSent');
126126

127-
let vaaSequence: bigint | undefined;
128127
if (sentEvent) {
129-
vaaSequence = BigInt(sentEvent.args[2]);
130128
console.log(`\nGreetingSent event:`);
131129
console.log(` Message: ${sentEvent.args[0]}`);
132130
console.log(` Target Chain: ${sentEvent.args[1]}`);
133-
console.log(` Sequence: ${vaaSequence}`);
131+
console.log(` Sequence: ${sentEvent.args[2]}`);
134132
}
135133

136134
// Poll executor status

0 commit comments

Comments
 (0)