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-errors/src/descriptors.ts
+3-4
Original file line number
Diff line number
Diff line change
@@ -235,16 +235,15 @@ Please double check your arguments.`,
235
235
UNRECOGNIZED_NAMED_PARAM: {
236
236
number: 304,
237
237
messageTemplate:
238
-
'Invalid parameter "%parameter%". It is neither a valid global parameter nor associated with any task. Did you forget to add the task first, or did you misspell it?',
238
+
"Invalid parameter {parameter}. It is neither a valid global parameter nor associated with any task. Did you forget to add the task first, or did you misspell it?",
239
239
websiteTitle: "Invalid parameter value",
240
240
websiteDescription: `One of your Hardhat parameters is invalid.
241
241
242
242
Please double check your arguments.`,
243
243
},
244
244
MISSING_VALUE_FOR_NAMED_PARAMETER: {
245
245
number: 305,
246
-
messageTemplate:
247
-
'Missing value for the task parameter named "%paramName%"',
246
+
messageTemplate: "Missing value for the task parameter named {paramName}",
248
247
websiteTitle: "Missing value for the task parameter",
249
248
websiteDescription: `You tried to run a task, but one of the values of its parameters was missing.
250
249
@@ -253,7 +252,7 @@ Please double check how you invoked Hardhat or ran your task.`,
253
252
UNUSED_ARGUMENT: {
254
253
number: 306,
255
254
messageTemplate:
256
-
'The argument with value "%value%" was not consumed because it is not associated with any task.',
255
+
"The argument with value {value} was not consumed because it is not associated with any task.",
257
256
websiteTitle: "Argument was not consumed",
258
257
websiteDescription: `You tried to run a task, but one of your arguments was not consumed.
0 commit comments