mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
Serialize parent blocks without pegin flags
This commit is contained in:
parent
89613b89c6
commit
037b2604d9
1 changed files with 3 additions and 3 deletions
|
|
@ -304,7 +304,7 @@ public:
|
|||
|
||||
template <typename Stream>
|
||||
inline void Serialize(Stream& s) const {
|
||||
SerializeTransaction(*this, s);
|
||||
Sidechain::Bitcoin::SerializeTransaction(*this, s);
|
||||
}
|
||||
|
||||
/** This deserializing constructor is provided instead of an Unserialize method.
|
||||
|
|
@ -372,13 +372,13 @@ struct CMutableTransaction
|
|||
|
||||
template <typename Stream>
|
||||
inline void Serialize(Stream& s) const {
|
||||
SerializeTransaction(*this, s);
|
||||
Sidechain::Bitcoin::SerializeTransaction(*this, s);
|
||||
}
|
||||
|
||||
|
||||
template <typename Stream>
|
||||
inline void Unserialize(Stream& s) {
|
||||
UnserializeTransaction(*this, s);
|
||||
Sidechain::Bitcoin::UnserializeTransaction(*this, s);
|
||||
}
|
||||
|
||||
template <typename Stream>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue