lint compliance

This commit is contained in:
yflory
2018-09-11 16:48:44 +02:00
parent f3c36bfd57
commit ac989a1e73
2 changed files with 3 additions and 3 deletions

View File

@@ -545,13 +545,13 @@ define([
// We need to use GET_HISTORY_RANGE to make sure we won't get the full history
var txid = Util.uid();
initRangeRequest(txid, chan.id, undefined);
var msg = ['GET_HISTORY_RANGE', chan.id, {
var msg0 = ['GET_HISTORY_RANGE', chan.id, {
//from: hash,
count: 10,
txid: txid,
}
];
network.sendto(network.historyKeeper, JSON.stringify(msg)).then(function () {
network.sendto(network.historyKeeper, JSON.stringify(msg0)).then(function () {
}, function (err) {
throw new Error(err);
});