fix: remove legacy code

This commit is contained in:
Tyera Eulberg
2020-01-08 13:59:58 -07:00
committed by Michael Vines
parent aea0e83a40
commit 4a547b0057
6 changed files with 189 additions and 237 deletions

View File

@@ -98,7 +98,12 @@ test('transaction-payer', async () => {
},
{
error: null,
result: true,
result: {
context: {
slot: 11,
},
value: true,
},
},
]);
@@ -139,7 +144,12 @@ test('transaction-payer', async () => {
},
{
error: null,
result: 99,
result: {
context: {
slot: 11,
},
value: 99,
},
},
]);
@@ -158,7 +168,12 @@ test('transaction-payer', async () => {
},
{
error: null,
result: 2,
result: {
context: {
slot: 11,
},
value: 2,
},
},
]);
expect(await connection.getBalance(accountFrom.publicKey)).toBe(2);