Skip to content

Commit

Permalink
fix in MoneroSubaddress.toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Aug 24, 2023
1 parent 8c764a0 commit aad034f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/js/wallet/model/MoneroSubaddress.js
Expand Up @@ -119,7 +119,7 @@ class MoneroSubaddress {
str += GenUtils.kvLine("Unlocked balance", this.getUnlockedBalance(), indent);
str += GenUtils.kvLine("Num unspent outputs", this.getNumUnspentOutputs(), indent);
str += GenUtils.kvLine("Is used", this.isUsed(), indent);
str += GenUtils.kvLine("Num blocks to unlock", this.isUsed(), indent);
str += GenUtils.kvLine("Num blocks to unlock", this.getNumBlocksToUnlock(), indent);
return str.slice(0, str.length - 1); // strip last newline
}
}
Expand Down

0 comments on commit aad034f

Please sign in to comment.