mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-21 07:39:08 +01:00
rpc: [wallet] Use unsigned type for tx version in sendall
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user