fix: update accounts to readonly/writable

This commit is contained in:
Tyera Eulberg
2019-11-06 10:42:01 -07:00
committed by Michael Vines
parent 58550733fb
commit d0c89f7fa3
8 changed files with 49 additions and 58 deletions

View File

@ -36,7 +36,7 @@ test('load BPF C program', async () => {
const programId = await BpfLoader.load(connection, from, data);
const transaction = new Transaction().add({
keys: [{pubkey: from.publicKey, isSigner: true, isDebitable: true}],
keys: [{pubkey: from.publicKey, isSigner: true, isWritable: true}],
programId,
});
await sendAndConfirmTransaction(connection, transaction, from);
@ -61,7 +61,7 @@ test('load BPF Rust program', async () => {
const programId = await BpfLoader.load(connection, from, data);
const transaction = new Transaction().add({
keys: [{pubkey: from.publicKey, isSigner: true, isDebitable: true}],
keys: [{pubkey: from.publicKey, isSigner: true, isWritable: true}],
programId,
});
await sendAndConfirmTransaction(connection, transaction, from);