```
This change removes Init from the constructors and instead uses C++11
member initialization. This removes a bunch of boilerplate, makes the
code easier to read. Also, C++11 member initialization avoids accidental
uninitialized members.
```
Backport of core [[https://github.com/bitcoin/bitcoin/pull/19020 | PR19020]].