Skip to content

Commit 647eff9

Browse files
committed
style: fix too long line warning
1 parent dd2968e commit 647eff9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

lib/deterministicmnlist/SimplifiedMNList.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@ SimplifiedMNList.prototype.applyDiff = function applyDiff(
5858
simplifiedMNListDiff
5959
) {
6060
// This will copy an instance of SimplifiedMNListDiff or create a new instance
61-
const diff = new SimplifiedMNListDiff(simplifiedMNListDiff, this.network, this.llmqParamsOverride);
61+
const diff = new SimplifiedMNListDiff(
62+
simplifiedMNListDiff,
63+
this.network,
64+
this.llmqParamsOverride,
65+
);
6266

6367
// only when we apply the first diff we set the network
6468
if (!this.network) {

0 commit comments

Comments
 (0)