From 5bd27b44e30d942daa9b7430a646133f8a6db4d4 Mon Sep 17 00:00:00 2001 From: piotr-roslaniec <39299780+piotr-roslaniec@users.noreply.github.com> Date: Wed, 28 Jun 2023 18:27:04 +0200 Subject: [PATCH] Update src/conditions/base/contract.ts Co-authored-by: Derek Pierre --- src/conditions/base/contract.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conditions/base/contract.ts b/src/conditions/base/contract.ts index 7f67d9be3..c4221e1da 100644 --- a/src/conditions/base/contract.ts +++ b/src/conditions/base/contract.ts @@ -46,7 +46,7 @@ const functionAbiSchema = Joi.object({ functionFragment = asInterface.getFunction(method); } catch (e) { return helper.message({ - custom: `"functionAbi" contains ambiguous "${method}"`, + custom: `"functionAbi" has no matching function for "${method}"`, }); }