From 588363749c68ee42747ab41bcc2c1c115917e63f Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 27 Jun 2025 15:15:12 +0000 Subject: [PATCH] commands: fix convert_currency cmd --- electrum/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/commands.py b/electrum/commands.py index 7bdd54125..01af4aea6 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -1965,8 +1965,8 @@ class Commands(Logger): configured exchange rate source. arg:decimal:from_amount:Amount to convert (default=1) - arg:decimal:from_ccy:Currency to convert from - arg:decimal:to_ccy:Currency to convert to + arg:str:from_ccy:Currency to convert from + arg:str:to_ccy:Currency to convert to """ if not self.daemon.fx.is_enabled(): raise UserFacingException("FX is disabled. To enable, run: 'electrum setconfig use_exchange_rate true'")