From 6a7d50d5c5143d7d98aa76c911766f353322197f Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 23 Jan 2015 18:04:31 +0100 Subject: [PATCH] raise trustedcoin max fee. --- plugins/trustedcoin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/trustedcoin.py b/plugins/trustedcoin.py index ae7195630..5fd7764c0 100644 --- a/plugins/trustedcoin.py +++ b/plugins/trustedcoin.py @@ -481,7 +481,7 @@ class Plugin(BasePlugin): return 0 # trustedcoin won't charge if the total inputs is lower than their fee price = int(self.price_per_tx.get(1)) - assert price <= 50000 + assert price <= 100000 if tx.input_value() < price: print_error("not charging for this tx") return 0