From d9733a97ae6cdd3e48520fc85c95e2d2f0fd35c5 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Wed, 23 Mar 2022 12:42:56 +0000 Subject: [PATCH] use 'estimated' fee --- nym-wallet/src/components/Fee.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nym-wallet/src/components/Fee.tsx b/nym-wallet/src/components/Fee.tsx index ef6e743df7..d4a7b550ec 100644 --- a/nym-wallet/src/components/Fee.tsx +++ b/nym-wallet/src/components/Fee.tsx @@ -20,7 +20,7 @@ export const Fee = ({ feeType }: { feeType: Operation }) => { if (fee) { return ( - Fee for this transaction: {`${fee} ${currency?.major}`}{' '} + Estimated fee for this transaction: {`${fee} ${currency?.major}`}{' '} ); }