Skip to content

Commit 4398de3

Browse files
committed
remove misleading comments
1 parent 7426245 commit 4398de3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/vault-sdk/tests/solana.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ describe("Solana Vault Integration Tests", () => {
314314

315315
describe("Transaction Creation and Signing", () => {
316316
it("should create a valid transfer transaction", async () => {
317-
const transferAmount = lamports(100_000_000n); // 1 lamport - minimum possible
317+
const transferAmount = lamports(100_000_000n);
318318

319319
// Get latest blockhash
320320
const { value: latestBlockhash } = await rpc.getLatestBlockhash().send();
@@ -348,7 +348,7 @@ describe("Solana Vault Integration Tests", () => {
348348
});
349349

350350
it("should sign transaction with vault and return valid signature", async () => {
351-
const transferAmount = lamports(100_000_000n); // 1 lamport - minimum possible
351+
const transferAmount = lamports(100_000_000n);
352352

353353
// Get latest blockhash
354354
const { value: latestBlockhash } = await rpc.getLatestBlockhash().send();
@@ -404,7 +404,7 @@ describe("Solana Vault Integration Tests", () => {
404404

405405
describe("End-to-End Transfer", () => {
406406
it("should create, sign, and broadcast a SOL transfer", async () => {
407-
const transferAmount = lamports(100_000_000n); // 1 lamport - minimum possible
407+
const transferAmount = lamports(100_000_000n);
408408

409409
// Get sender's initial balance
410410
const initialBalance = await rpc.getBalance(address(senderPubkey)).send();
@@ -510,7 +510,7 @@ describe("Solana Vault Integration Tests", () => {
510510
describe("Multiple Transfers", () => {
511511
it("should handle multiple sequential transfers", async () => {
512512
const numTransfers = 3;
513-
const transferAmount = lamports(100_000_000n); // 1 lamport each - minimum possible
513+
const transferAmount = lamports(100_000_000n);
514514

515515
const signatures: string[] = [];
516516

0 commit comments

Comments
 (0)