From aad034f01a28628cfda9e7af14d00a81e2430bf2 Mon Sep 17 00:00:00 2001 From: woodser Date: Mon, 7 Aug 2023 07:26:13 -0400 Subject: [PATCH] fix in MoneroSubaddress.toString() --- src/main/js/wallet/model/MoneroSubaddress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/js/wallet/model/MoneroSubaddress.js b/src/main/js/wallet/model/MoneroSubaddress.js index 4a5e5c3e5..f0bb10040 100644 --- a/src/main/js/wallet/model/MoneroSubaddress.js +++ b/src/main/js/wallet/model/MoneroSubaddress.js @@ -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 } }