Fix inbox summary (#233)

nambrot/fix-contracts-metrics
Nam Chu Hoai 3 years ago committed by GitHub
parent 4a28875af8
commit 649001d179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      typescript/abacus-deploy/hardhat.config.ts

@ -42,7 +42,7 @@ const domainSummary = async (deploy: CoreDeploy, domain: types.Domain) => {
index: inboxCheckpointIndex.toNumber(), index: inboxCheckpointIndex.toNumber(),
}; };
}; };
summary.inboxes = deploy.remotes(domain).map(inboxSummary); summary.inboxes = await Promise.all(deploy.remotes(domain).map(inboxSummary));
return summary; return summary;
}; };

Loading…
Cancel
Save