Skip to content

Commit

Permalink
nodejs: fix blockIssuerKeys type (#1836)
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez authored Jan 12, 2024
1 parent 9c8956a commit 68e8ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/nodejs/lib/types/block/output/feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ class BlockIssuerFeature extends Feature {
@Type(() => BlockIssuerKey, {
discriminator: BlockIssuerKeyDiscriminator,
})
readonly blockIssuerKeys: Set<BlockIssuerKey>;
readonly blockIssuerKeys: BlockIssuerKey[];

constructor(expirySlot: SlotIndex, blockIssuerKeys: Set<BlockIssuerKey>) {
constructor(expirySlot: SlotIndex, blockIssuerKeys: BlockIssuerKey[]) {
super(FeatureType.BlockIssuer);
this.expirySlot = expirySlot;
this.blockIssuerKeys = blockIssuerKeys;
Expand Down

0 comments on commit 68e8ced

Please sign in to comment.