cli: drop anti-replay.

This commit is contained in:
Christopher Jeffrey 2017-12-12 08:49:43 -08:00
parent cd7c63d95d
commit e01a492489
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

11
bin/cli
View File

@ -19,10 +19,6 @@ const wports = {
simnet: 18558
};
const ANTIREPLAY = ''
+ '6a2e426974636f696e3a204120506565722d746f2d5065657'
+ '220456c656374726f6e696320436173682053797374656d';
class CLI {
constructor() {
this.config = new Config('bcoin', {
@ -336,13 +332,6 @@ class CLI {
});
}
if (this.config.bool('no-replay')) {
outputs.push({
script: ANTIREPLAY,
value: 0
});
}
const options = {
account: this.config.str('account'),
passphrase: this.config.str('passphrase'),