deth
Version:
Ethereum node focused on Developer Experience
8 lines (7 loc) • 350 B
TypeScript
import Block from 'ethereumjs-block';
import { Transaction } from 'ethereumjs-tx';
import { RpcTransactionResponse, RpcTransactionReceipt } from '../model';
export declare function getReceiptsAndResponses(block: Block, transactions: Transaction[], results: any[]): {
receipts: RpcTransactionReceipt[];
responses: RpcTransactionResponse[];
};