Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Oct 30, 2023
1 parent b0e82c0 commit 03bd690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/nodejs/lib/types/block/output/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ abstract class StateMetadataOutput extends ImmutableFeaturesOutput /*implements
type: OutputType,
amount: bigint,
unlockConditions: UnlockCondition[],
stateMetadata?: HexEncodedString
stateMetadata?: HexEncodedString,
) {
super(type, amount, unlockConditions);
this.stateMetadata = stateMetadata;
Expand Down Expand Up @@ -265,7 +265,7 @@ class AliasOutput extends StateMetadataOutput /*implements IAliasOutput*/ {
aliasId: HexEncodedString,
stateIndex: number,
foundryCounter: number,
stateMetadata?: HexEncodedString
stateMetadata?: HexEncodedString,
) {
super(OutputType.Alias, amount, unlockConditions, stateMetadata);
this.aliasId = aliasId;
Expand Down

0 comments on commit 03bd690

Please sign in to comment.