commit b03cdec41490c0b48f87c97fec93bcb3e94eedd0
parent 68933e1627c9de48177078007635ae26ed41ab40
Author: Antoine A <>
Date: Mon, 12 Feb 2024 11:02:32 +0100
Fix regional currency conversion rates
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/regional-currency/setup-libeufin.sh b/regional-currency/setup-libeufin.sh
@@ -113,13 +113,13 @@ curl -u "admin:${BANK_ADMIN_PASSWORD}" \
{
"cashin_ratio": "1",
"cashin_fee": "${CURRENCY}:0",
- "cashin_tiny_amount": "${CURRENCY}:2",
+ "cashin_tiny_amount": "${CURRENCY}:0.01",
"cashin_rounding_mode": "nearest",
"cashin_min_amount": "${FIAT_CURRENCY}:1",
"cashout_ratio": "1",
"cashout_fee": "${FIAT_CURRENCY}:0",
- "cashout_tiny_amount": "${FIAT_CURRENCY}:2",
- "cashout_rounding_mode": "zero",
+ "cashout_tiny_amount": "${FIAT_CURRENCY}:0.01",
+ "cashout_rounding_mode": "nearest",
"cashout_min_amount": "${CURRENCY}:1"
}
EOF