diff options
-rw-r--r-- | packages/web3-wrapper/src/web3_wrapper.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/web3-wrapper/src/web3_wrapper.ts b/packages/web3-wrapper/src/web3_wrapper.ts index 6ab63ab1b..40a554522 100644 --- a/packages/web3-wrapper/src/web3_wrapper.ts +++ b/packages/web3-wrapper/src/web3_wrapper.ts @@ -399,7 +399,7 @@ export class Web3Wrapper { ): Promise<TransactionReceiptWithDecodedLogs> { const receipt = await this.awaitTransactionMinedAsync(txHash, pollingIntervalMs, timeoutMs); if (receipt.status !== 1) { - throw new Error('Transaction failed (transaction receipt did not have a status of 1)'); + throw new Error(`Transaction failed: ${txHash}`); } return receipt; } |