cli: add rate option.

This commit is contained in:
Christopher Jeffrey 2017-02-22 03:02:36 -08:00
parent 47c43ea39a
commit 179caa2bd8
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -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);