@polkadot/api
Version:
Promise and RxJS wrappers around the Polkadot JS RPC
23 lines (22 loc) • 982 B
JavaScript
import { isCompact } from '@polkadot/util';
import { l } from './logging.js';
export function filterEvents(txHash, { block: { extrinsics, header } }, allEvents, status) {
// extrinsics to hashes
for (const [txIndex, x] of extrinsics.entries()) {
if (x.hash.eq(txHash)) {
return {
blockNumber: isCompact(header.number) ? header.number.unwrap() : header.number,
events: allEvents.filter(({ phase }) => phase.isApplyExtrinsic &&
phase.asApplyExtrinsic.eqn(txIndex)),
txIndex
};
}
}
// if we do get the block after finalized, it _should_ be there
// only warn on filtering with isInBlock (finalization finalizes after)
if (status.isInBlock) {
const allHashes = extrinsics.map((x) => x.hash.toHex());
l.warn(`block ${header.hash.toHex()}: Unable to find extrinsic ${txHash.toHex()} inside ${allHashes.join(', ')}`);
}
return {};
}