From 81a61c805450010ac24f96055db4221c4a0b65fa Mon Sep 17 00:00:00 2001 From: Kirill Klimenko Date: Tue, 26 Mar 2024 13:13:41 +0100 Subject: [PATCH] Prettier --- src/utils/crypto.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/utils/crypto.ts b/src/utils/crypto.ts index 4bdb92978c..6a3cdcfd7b 100644 --- a/src/utils/crypto.ts +++ b/src/utils/crypto.ts @@ -94,11 +94,7 @@ export const encodeFunction = ( } }; -export const encodeProposalTransaction = ( - functionName: string, - signature: string, - data: any, -) => { +export const encodeProposalTransaction = (functionName: string, signature: string, data: any) => { return new utils.Interface([signature]).encodeFunctionData(functionName, data); };