fix: use stable endpoints for getBlocks (#20310)

This commit is contained in:
Justin Starry
2021-09-29 11:27:11 -04:00
committed by GitHub
parent 32ece63338
commit c02ef395ed
2 changed files with 3 additions and 3 deletions

View File

@@ -3119,7 +3119,7 @@ export class Connection {
endSlot !== undefined ? [startSlot, endSlot] : [startSlot],
commitment,
);
const unsafeRes = await this._rpcRequest('getBlocks', args);
const unsafeRes = await this._rpcRequest('getConfirmedBlocks', args);
const res = create(unsafeRes, jsonRpcResult(array(number())));
if ('error' in res) {
throw new Error('failed to get blocks: ' + res.error.message);