From 80c7b666a204c74be1d1ed6b019d1fad2d2fe909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20B=C3=ADlek?= Date: Mon, 27 Feb 2017 20:59:34 +0100 Subject: [PATCH] Raising the maxfee (#24) Right now, the recommended fee by 21.co is 200 satoshis per b. (see https://bitcoinfees.21.co/api/v1/fees/recommended ) We use 21.co on mytrezor. 200 satoshis per byte == 200.000 satoshis per kB. I am raising it to 300.000 so we have some breathing room. --- coins.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coins.json b/coins.json index 239a98c0b..846153655 100644 --- a/coins.json +++ b/coins.json @@ -2,7 +2,7 @@ "coin_name": "Bitcoin", "coin_shortcut": "BTC", "address_type": 0, - "maxfee_kb": 100000, + "maxfee_kb": 300000, "address_type_p2sh": 5, "address_type_p2wpkh": 6, "address_type_p2wsh": 10,