From f3f82a91fccdc3e427ba1e91f62ea376af5c1843 Mon Sep 17 00:00:00 2001 From: Janne Pulkkinen Date: Sun, 12 Mar 2017 09:16:17 +0200 Subject: [PATCH] Fix a typo'd function call preventing paytomany command from working --- lib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands.py b/lib/commands.py index 58688b88..a9d0f18a 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -430,7 +430,7 @@ class Commands: @command('wp') def paytomany(self, outputs, tx_fee=None, from_addr=None, change_addr=None, nocheck=False, unsigned=False, rbf=False): """Create a multi-output transaction. """ - tx_fee = to_satoshis(tx_fee) + tx_fee = satoshis(tx_fee) domain = [from_addr] if from_addr else None tx = self._mktx(outputs, tx_fee, change_addr, domain, nocheck, unsigned, rbf) return tx.as_dict()