fix: adapt to GetRecentBlockhash RPC API signature change

This commit is contained in:
Michael Vines
2019-05-08 17:41:07 -07:00
parent 2373d66e40
commit a1ce705d15
2 changed files with 7 additions and 3 deletions

View File

@ -15,7 +15,10 @@ export function mockGetRecentBlockhash() {
},
{
error: null,
result: recentBlockhash.publicKey.toBase58(),
result: [
recentBlockhash.publicKey.toBase58(),
{ /* empty fee calculator */}
]
},
]);
}