fix await
This commit is contained in:
parent
bc0b369095
commit
af65d78be9
@ -100,7 +100,7 @@ class Transaction {
|
|||||||
try {
|
try {
|
||||||
await this._prepare()
|
await this._prepare()
|
||||||
await this._send()
|
await this._send()
|
||||||
const receipt = this._waitForConfirmations()
|
const receipt = await this._waitForConfirmations()
|
||||||
// we could have bumped nonce during execution, so get the latest one + 1
|
// we could have bumped nonce during execution, so get the latest one + 1
|
||||||
this.manager._nonce = this.tx.nonce + 1
|
this.manager._nonce = this.tx.nonce + 1
|
||||||
return receipt
|
return receipt
|
||||||
|
Loading…
Reference in New Issue
Block a user