aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_basic
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-13 11:32:44 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-21 14:46:29 +0000
commitadf6d7730f3389649ea0e79d2968e04fd3700dff (patch)
tree6e1af06a30d0e6e9eda6869da3a81b2e16ca9de3 /src/cryptonote_basic
parentMerge pull request #5283 (diff)
downloadmonero-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.h7
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;
+ }
}
}