From f701af0b74ba0ee2a517a43f56cb44ddb31c61f0 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 3 Aug 2017 19:15:46 -0700 Subject: [PATCH] cli: fix createtx. --- bin/cli | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cli b/bin/cli index d2de1dfa..d6e55154 100755 --- a/bin/cli +++ b/bin/cli @@ -330,7 +330,8 @@ CLI.prototype.createTX = async function createTX() { passphrase: this.config.str('passphrase'), outputs: [output], smart: this.config.bool('smart'), - rate: this.config.amt('rate') + rate: this.config.amt('rate'), + subtractFee: this.config.bool('subtract-fee') }; const tx = await this.wallet.createTX(options);