diff options
| author | Riccardo Spagni <ric@spagni.net> | 2019-03-24 19:35:39 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2019-03-24 19:35:39 +0200 |
| commit | 8cb4293e82c5a40c65350eeae4f3b07a03bd3268 (patch) | |
| tree | 9fb56ad81c4a12c64f522df1de829292808f8e49 /src/cryptonote_basic | |
| parent | 37ee4acf48a5d0872669ed9857caa0c8fb847e2e (diff) | |
| parent | adf6d7730f3389649ea0e79d2968e04fd3700dff (diff) | |
| download | monzero-core-8cb4293e82c5a40c65350eeae4f3b07a03bd3268.tar.gz monzero-core-8cb4293e82c5a40c65350eeae4f3b07a03bd3268.tar.xz monzero-core-8cb4293e82c5a40c65350eeae4f3b07a03bd3268.zip | |
Merge pull request #5277
adf6d773 wallet: fix offline signing calling a daemon RPC (moneromooo-monero)
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; + } } } |
