mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 02:24:30 +00:00
describe fee as max based on hardcoded max gas limit
This commit is contained in:
parent
b5a58064ac
commit
68734132a1
2 changed files with 2 additions and 2 deletions
|
@ -1412,7 +1412,7 @@ class _DesktopSendState extends ConsumerState<DesktopSend> {
|
|||
),
|
||||
if (coin != Coin.epicCash)
|
||||
Text(
|
||||
"Transaction fee (estimated)",
|
||||
"Transaction fee (${coin == Coin.ethereum ? "max" : "estimated"})",
|
||||
style: STextStyles.desktopTextExtraSmall(context).copyWith(
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
|
|
|
@ -993,7 +993,7 @@ class _DesktopTokenSendState extends ConsumerState<DesktopTokenSend> {
|
|||
height: 20,
|
||||
),
|
||||
Text(
|
||||
"Transaction fee (estimated)",
|
||||
"Transaction fee (max)",
|
||||
style: STextStyles.desktopTextExtraSmall(context).copyWith(
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
|
|
Loading…
Reference in a new issue