From 866309cedf58db03f1887f113aef55b2f8aa41c9 Mon Sep 17 00:00:00 2001 From: Tommy Verrall Date: Fri, 8 Dec 2023 14:19:58 +0100 Subject: [PATCH] fix linting --- nym-wallet/src/requests/simulate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nym-wallet/src/requests/simulate.ts b/nym-wallet/src/requests/simulate.ts index d15d41d5c6..a8f603ed72 100644 --- a/nym-wallet/src/requests/simulate.ts +++ b/nym-wallet/src/requests/simulate.ts @@ -69,7 +69,7 @@ export const simulateVestingUpdateGatewayConfig = async (update: GatewayConfigUp export const simulateWithdrawVestedCoins = async (args: any) => invokeWrapper('simulate_withdraw_vested_coins', args); - export const simulateSend = async ({ address, amount, memo }: { address: string; amount: DecCoin; memo: string }) => +export const simulateSend = async ({ address, amount, memo }: { address: string; amount: DecCoin; memo: string }) => invokeWrapper('simulate_send', { address, amount, memo }); export const getCustomFees = async ({ feesAmount }: { feesAmount: DecCoin }) =>