rm number of shards and threshold from shard messages in stub

This commit is contained in:
ameba23
2021-02-24 15:43:27 +01:00
parent 4ead7cd4a1
commit b57d811b4a

View File

@@ -29,7 +29,7 @@ class DarkCrystalStub implements DarkCrystal {
for (int i = 0; i < numShards; i++) {
byte[] shard = new byte[123];
random.nextBytes(shard);
shards.add(new Shard(secretId, numShards, threshold, shard));
shards.add(new Shard(secretId, shard));
}
return shards;
}