Skip to content

Commit

Permalink
fix: undo breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuditi committed Jul 28, 2023
1 parent 2922600 commit 66cf7b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bindings/nodejs/lib/types/block/input/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class TreasuryInput extends Input {
/**
* The milestone id of the input.
*/
readonly milestoneId: HexEncodedString;
milestoneId: HexEncodedString;

constructor(milestoneId: HexEncodedString) {
super(InputType.Treasury);
Expand All @@ -50,11 +50,11 @@ class UTXOInput extends Input {
/**
* The transaction Id.
*/
readonly transactionId: HexEncodedString;
transactionId: HexEncodedString;
/**
* The output index.
*/
readonly transactionOutputIndex: number;
transactionOutputIndex: number;

constructor(
transactionId: HexEncodedString,
Expand Down

0 comments on commit 66cf7b4

Please sign in to comment.