fix: add more lamports to payer accounts to account for higher fees

This commit is contained in:
Michael Vines
2019-06-12 10:51:56 -07:00
parent e23d2453d7
commit a8d0b6f9f1
2 changed files with 16 additions and 16 deletions

View File

@ -41,7 +41,7 @@ test('load BPF Rust program', async () => {
}
const connection = new Connection(url);
const from = await newAccountWithLamports(connection, 1024);
const from = await newAccountWithLamports(connection, 100000);
const data = await fs.readFile(
'test/fixtures/noop-rust/solana_bpf_rust_noop.so',
);