From e01a492489b49c8a6422dfde02aed62823d99b9a Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Tue, 12 Dec 2017 08:49:43 -0800 Subject: [PATCH] cli: drop anti-replay. --- bin/cli | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/bin/cli b/bin/cli index 5651747d..91c1d40d 100755 --- a/bin/cli +++ b/bin/cli @@ -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'),