rpc: [wallet] Use unsigned type for tx version in sendall

This commit is contained in:
MarcoFalke
2025-12-22 11:04:49 +01:00
parent 7f295e1d9b
commit fafbc70d48

View File

@@ -1467,7 +1467,7 @@ RPCHelpMan sendall()
}
if (options.exists("version")) {
coin_control.m_version = options["version"].getInt<int>();
coin_control.m_version = options["version"].getInt<decltype(coin_control.m_version)>();
}
if (coin_control.m_version == TRUC_VERSION) {