solana/web3.js/test/mockrpc/get-recent-blockhash.js
2020-06-14 21:57:04 -07:00

27 lines
470 B
JavaScript

// @flow
import {Account} from '../../src';
import {url} from '../url';
import {mockRpc} from '../__mocks__/node-fetch';
export function mockGetRecentBlockhash() {
const recentBlockhash = new Account();
mockRpc.push([
url,
{
method: 'getRecentBlockhash',
params: [],
},
{
error: null,
result: [
recentBlockhash.publicKey.toBase58(),
{
/* empty fee calculator */
},
],
},
]);
}