From fafbc70d48e1fb42c4ed3da609e5f30c4cc39418 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Mon, 22 Dec 2025 11:04:49 +0100 Subject: [PATCH] rpc: [wallet] Use unsigned type for tx version in sendall --- src/wallet/rpc/spend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/rpc/spend.cpp b/src/wallet/rpc/spend.cpp index c7208e052c4..64cf95a49c3 100644 --- a/src/wallet/rpc/spend.cpp +++ b/src/wallet/rpc/spend.cpp @@ -1467,7 +1467,7 @@ RPCHelpMan sendall() } if (options.exists("version")) { - coin_control.m_version = options["version"].getInt(); + coin_control.m_version = options["version"].getInt(); } if (coin_control.m_version == TRUC_VERSION) {