mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
refactor: use braced init for integer constants instead of c style casts
This commit is contained in:
parent
3f8591d46b
commit
f2fc03ec85
23 changed files with 47 additions and 47 deletions
|
|
@ -1303,7 +1303,7 @@ public:
|
|||
// Serialize the nSequence
|
||||
if (nInput != nIn && (fHashSingle || fHashNone))
|
||||
// let the others update at will
|
||||
::Serialize(s, (int)0);
|
||||
::Serialize(s, int{0});
|
||||
else
|
||||
::Serialize(s, txTo.vin[nInput].nSequence);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue