Skip to content

Commit f15365d

Browse files
committed
use random bytes
1 parent f16f1f9 commit f15365d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

basics/solana-signature-verification/tests/solana-signature-verification.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ import * as fs from 'fs';
1111
import * as path from 'path';
1212
import { getPriceUpdateData, transferLamports } from "./utils"
1313
import { assert, expect } from 'chai';
14+
import * as crypto from 'crypto';
1415

15-
const MSG = Buffer.from('const MSG = Buffer.from');
16+
const MSG = crypto.randomBytes(32);
1617
// replace with your keypair path
1718
const keypairPath = "~/.config/solana/id.json";
1819
// the actual keypair

0 commit comments

Comments
 (0)