@@ -242,7 +242,9 @@ module BeaconTestFixtures {
242
242
cache := MPT.Default(Default := MPT.DefaultCache(entryCapacity := 3))
243
243
);
244
244
var cache :- expect mpl. CreateCryptographicMaterialsCache (input);
245
- return SI. KeySource (client, version.keyStore, SI.LiteralLoc(keys), cache, 0);
245
+ // Create a test partitionIdBytes
246
+ var partitionIdBytes : seq < uint8> := [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16];
247
+ return SI. KeySource (client, version.keyStore, SI.LiteralLoc(keys), cache, 0, partitionIdBytes);
246
248
}
247
249
248
250
method GetMultiSource (keyName : string , version : BeaconVersion ) returns (output : SI. KeySource)
@@ -257,7 +259,9 @@ module BeaconTestFixtures {
257
259
cache := MPT.Default(Default := MPT.DefaultCache(entryCapacity := 3))
258
260
);
259
261
var cache :- expect mpl. CreateCryptographicMaterialsCache (input);
260
- return SI. KeySource (client, version.keyStore, SI.MultiLoc(keyName, false), cache, 0);
262
+ // Create a test partitionIdBytes
263
+ var partitionIdBytes : seq < uint8> := [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16];
264
+ return SI. KeySource (client, version.keyStore, SI.MultiLoc(keyName, false), cache, 0, partitionIdBytes);
261
265
}
262
266
263
267
const SimpleItem : DDB. AttributeMap := map [
0 commit comments