Skip to content

Commit

Permalink
Fix bug in --wait for CLI.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Aug 6, 2019
1 parent 7dfef46 commit 9977c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src.ts/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class WrappedSigner extends ethers.Signer {

if (this.plugin.wait) {
try {
let receipt = await tx.wait();
let receipt = await response.wait();
dump("Success:", {
"Block Number": receipt.blockNumber,
"Block Hash": receipt.blockHash,
Expand Down

0 comments on commit 9977c9f

Please sign in to comment.