You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use bool for getrawtransaction verbose param in Dash tests
The RPC type checking backported in this PR (bitcoin#26039) enforces
strict type checking for RPC parameters. The getrawtransaction
'verbose' parameter is declared as RPCArg::Type::BOOL, so passing
integer 1 instead of True now raises a type error.
Fix all 29 occurrences across 13 test files where getrawtransaction
was called with integer 1 instead of boolean True.
0 commit comments