wallet: fix offline signing calling a daemon RPC

This commit is contained in:
moneromooo-monero 2019-03-13 11:32:44 +00:00
parent f5d7652f73
commit adf6d7730f
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
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;
}
}
}