Skip to content

Commit

Permalink
fix(tag): small tweak to instant tag
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler authored Oct 23, 2024
1 parent 5e82a6a commit 663de6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ export class IOWriteable extends IOReadable implements AoIOWrite {
{ name: 'Action', value: 'Decrease-Delegate-Stake' },
{ name: 'Target', value: params.target },
{ name: 'Quantity', value: params.decreaseQty.valueOf().toString() },
{ name: 'Instant', value: String(params.instant ?? false) },
{ name: 'Instant', value: `${params.instant || false}`,
],
});
}
Expand Down

0 comments on commit 663de6f

Please sign in to comment.