Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions lib/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ module.exports = {
// for devnet testing only
// 12 members, 8 (67%) threshold, one per hour
LLMQ_DEVNET_PLATFORM: 107,
// for testing only
// 1 member.
LLMQ_SINGLE_NODE: 111,
},

// when selecting a quorum for signing and verification, we use this offset as
Expand Down
5 changes: 0 additions & 5 deletions lib/deterministicmnlist/QuorumEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,11 +407,6 @@ QuorumEntry.getParams = function getParams(llmqType) {
params.threshold = 8;
params.maximumActiveQuorumsCount = 4;
return params;
case constants.LLMQ_TYPES.LLMQ_SINGLE_NODE:
params.size = 1;
params.threshold = 1;
params.maximumActiveQuorumsCount = 2;
return params;
default:
throw new Error(`Invalid llmq type ${llmqType}`);
}
Expand Down
1 change: 0 additions & 1 deletion lib/deterministicmnlist/SimplifiedMNList.js
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@ SimplifiedMNList.prototype.getLLMQTypes = function getLLMQTypes() {
constants.LLMQ_TYPES.LLMQ_TYPE_TEST_INSTANTSEND,
constants.LLMQ_TYPES.LLMQ_TYPE_TEST_DIP0024,
constants.LLMQ_TYPES.LLMQ_TEST_PLATFORM,
constants.LLMQ_TYPES.LLMQ_SINGLE_NODE,
];
return llmqTypes;
}
Expand Down
Loading