solana/web3.js/test/mockrpc/get-recent-blockhash.js

25 lines
449 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 */}
]
},
]);
}