From 179caa2bd823d0b275e48de9434bc31be714ca4c Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 22 Feb 2017 03:02:36 -0800 Subject: [PATCH] cli: add rate option. --- bin/cli | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cli b/bin/cli index cff7fe00..7bc216cb 100755 --- a/bin/cli +++ b/bin/cli @@ -301,7 +301,8 @@ CLI.prototype.sendTX = co(function* sendTX() { options = { account: this.config.account, passphrase: this.config.passphrase, - outputs: [output] + outputs: [output], + rate: this.config.rate }; tx = yield this.wallet.send(options);