Skip to content

Commit 05496ee

Browse files
authored
Updated Mined Tx flow (#476)
1 parent 7bb2c5f commit 05496ee

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/db/transactions/updateTx.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ export const updateTx = async ({ pgtx, queueId, data }: UpdateTxParams) => {
104104
id: queueId,
105105
},
106106
data: {
107+
transactionHash: data.transactionHash,
107108
minedAt: data.minedAt,
108109
blockNumber: data.blockNumber,
109110
onChainTxStatus: data.onChainTxStatus,
@@ -112,6 +113,7 @@ export const updateTx = async ({ pgtx, queueId, data }: UpdateTxParams) => {
112113
gasLimit: data.gasLimit,
113114
maxFeePerGas: data.maxFeePerGas,
114115
maxPriorityFeePerGas: data.maxPriorityFeePerGas,
116+
nonce: data.nonce,
115117
},
116118
});
117119
break;

0 commit comments

Comments
 (0)