From e1436cb3bcf89e698592cf47ca39a9a536d63bc6 Mon Sep 17 00:00:00 2001 From: Donny <130464015+defitricks@users.noreply.github.com> Date: Sat, 16 Nov 2024 20:41:15 +0200 Subject: [PATCH] Fix terminology mismatch Update send-eth.ts Fix terminology mismatch in error message for invalid signature type --- scripts/send-eth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/send-eth.ts b/scripts/send-eth.ts index a1343e3..036b617 100644 --- a/scripts/send-eth.ts +++ b/scripts/send-eth.ts @@ -37,7 +37,7 @@ async function main() { baseModule = keyspaceWebAuthnBase; privateKey = ECDSA.fromJWK(JSON.parse(args.private_key)); } else { - console.error("Invalid circuit type"); + console.error("Invalid signature type"); } const to = await getAccount(client, args.keyspace_key, 0n, args.signature_type);