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

@ -20,17 +20,22 @@ export function mockGetRecentBlockhash(commitment: ?Commitment) {
},
{
error: null,
result: [
recentBlockhash.publicKey.toBase58(),
{
lamportsPerSignature: 42,
burnPercent: 50,
maxLamportsPerSignature: 42,
minLamportsPerSignature: 42,
targetLamportsPerSignature: 42,
targetSignaturesPerSlot: 42,
result: {
context: {
slot: 11,
},
],
value: [
recentBlockhash.publicKey.toBase58(),
{
lamportsPerSignature: 42,
burnPercent: 50,
maxLamportsPerSignature: 42,
minLamportsPerSignature: 42,
targetLamportsPerSignature: 42,
targetSignaturesPerSlot: 42,
},
],
},
},
]);
}