Merge pull request #5277

adf6d773 wallet: fix offline signing calling a daemon RPC (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2019-03-24 19:35:39 +02:00
commit 8cb4293e82
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
5 changed files with 36 additions and 23 deletions

View file

@ -339,6 +339,13 @@ namespace boost
if (x.type == rct::RCTTypeBulletproof || x.type == rct::RCTTypeBulletproof2)
a & x.p.pseudoOuts;
}
template <class Archive>
inline void serialize(Archive &a, rct::RCTConfig &x, const boost::serialization::version_type ver)
{
a & x.range_proof_type;
a & x.bp_version;
}
}
}