From ae58852190f0d2eb248015fcc442f8f30461895a Mon Sep 17 00:00:00 2001 From: Jim O'Quinn Date: Mon, 27 May 2019 04:28:06 -0500 Subject: [PATCH] change chain_id from 1024 to 1020 Version 3.1.0 of the blockchain has a chain id of 1020 and the SDK had the old value of 2014. --- lib/structs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/structs.js b/lib/structs.js index e405786f..c285c74b 100644 --- a/lib/structs.js +++ b/lib/structs.js @@ -13,7 +13,7 @@ class Tx { this.publisher = ""; this.publisher_sigs = []; this.amount_limit = []; - this.chain_id = 1024; + this.chain_id = 1020; this.reserved = null; }