You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: v-next/hardhat-ignition-core/src/internal/errors-list.ts
+41
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,11 @@ export const ERROR_RANGES: {
78
78
max: 1299,
79
79
title: "List transactions errors",
80
80
},
81
+
TRACK_TRANSACTION: {
82
+
min: 1300,
83
+
max: 1399,
84
+
title: "Track transaction errors",
85
+
},
81
86
};
82
87
83
88
/**
@@ -201,6 +206,12 @@ export const ERRORS = {
201
206
number: 410,
202
207
message: "Gas estimation failed: %error%",
203
208
},
209
+
TRANSACTION_LOST: {
210
+
number: 411,
211
+
message: `An error occured while trying to send a transaction for future %futureId%.
212
+
Please use a block explorer to find the hash of the transaction with nonce %nonce% sent from account %sender% and use the following command to add it to your deployment:
Copy file name to clipboardexpand all lines: v-next/hardhat-ignition-core/src/internal/execution/future-processor/helpers/network-interaction-execution.ts
0 commit comments