Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedali8 authored May 28, 2022
2 parents eead9cd + 04663c7 commit 2d0678d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/batch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export async function ensureBatchRecordSender(id: string): Promise<void> {
export async function batchHandler(event: SubstrateEvent): Promise<void> {
const blockId = event.block.block.hash.toString();
const signer = event.extrinsic?.extrinsic.signer.toString();
const extrinsicHash = event.extrinsic?.extrinsic?.hash?.toString();
const extrinsicHash = event.extrinsic?.extrinsic.hash.toString();

const timestamp = event.block.timestamp;
const blockNumber = event.block.block.header.number.toNumber();
Expand Down
1 change: 1 addition & 0 deletions src/handlers/multisig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ export async function multisigHandler(event: SubstrateEvent): Promise<void> {
}

if (method === "MultisigExecuted") {
logger.info("executedMultisigHandler runing");
await executedMultisigHandler(event);
}

Expand Down

0 comments on commit 2d0678d

Please sign in to comment.