From e1edcf19986f181f15efeb56194f7fd32ba40cd6 Mon Sep 17 00:00:00 2001 From: Mohan <86064887+binarybaron@users.noreply.github.com> Date: Thu, 26 Jun 2025 10:50:26 +0200 Subject: [PATCH] fix(gui): "Address pool does sum up to 1" --- src-gui/src/renderer/rpc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-gui/src/renderer/rpc.ts b/src-gui/src/renderer/rpc.ts index 56bf2345..e80b1c66 100644 --- a/src-gui/src/renderer/rpc.ts +++ b/src-gui/src/renderer/rpc.ts @@ -198,7 +198,7 @@ export async function buyXmr( } else { address_pool.push({ address: monero_receive_address, - percentage: 100, + percentage: 1, label: "Your wallet", }); }