diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-13 11:32:44 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-21 14:46:29 +0000 |
commit | adf6d7730f3389649ea0e79d2968e04fd3700dff (patch) | |
tree | 6e1af06a30d0e6e9eda6869da3a81b2e16ca9de3 /src/cryptonote_basic | |
parent | Merge pull request #5283 (diff) | |
download | monero-adf6d7730f3389649ea0e79d2968e04fd3700dff.tar.xz |
wallet: fix offline signing calling a daemon RPC
Diffstat (limited to 'src/cryptonote_basic')
-rw-r--r-- | src/cryptonote_basic/cryptonote_boost_serialization.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cryptonote_basic/cryptonote_boost_serialization.h b/src/cryptonote_basic/cryptonote_boost_serialization.h index 4ce9f3eeb..1840b6d2b 100644 --- a/src/cryptonote_basic/cryptonote_boost_serialization.h +++ b/src/cryptonote_basic/cryptonote_boost_serialization.h @@ -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; + } } } |