Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioVentilii committed Jan 22, 2025
1 parent 2250981 commit 657a5d9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/frontend/src/sol/services/sol-send.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ import {
type TransactionMessage,
type TransactionVersion
} from '@solana/transaction-messages';
import { assertTransactionIsFullySigned, type Base64EncodedWireTransaction } from '@solana/transactions';
import {
assertTransactionIsFullySigned,
type Base64EncodedWireTransaction
} from '@solana/transactions';
import { getTransactionEncoder, sendAndConfirmTransactionFactory } from '@solana/web3.js';
import { get } from 'svelte/store';

Expand Down Expand Up @@ -275,7 +278,10 @@ export const sendSol = async ({

console.log('av', signedTransaction, signature, transactionMessage);

Check failure on line 279 in src/frontend/src/sol/services/sol-send.services.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected console statement

const foo = simulateTransaction(av2 as Base64EncodedWireTransaction, { commitment: 'confirmed', encoding: 'base64' });
const foo = simulateTransaction(av2 as Base64EncodedWireTransaction, {
commitment: 'confirmed',
encoding: 'base64'
});

console.log('foo', foo);

Check failure on line 286 in src/frontend/src/sol/services/sol-send.services.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected console statement

Expand Down

0 comments on commit 657a5d9

Please sign in to comment.