aboutsummaryrefslogtreecommitdiff
path: root/src/serialization/debug_archive.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-06-10 12:00:54 -0500
committerluigi1111 <luigi1111w@gmail.com>2021-06-10 12:00:54 -0500
commit7499837a6fe8d3533e1360dce8f3ba230ff76042 (patch)
treecd3e089e2e09de33044220ff72461a761b028e3f /src/serialization/debug_archive.h
parentca732849515d1e01147ded7db05defdb5518b13b (diff)
parent08e4497c6e3b3f434c0bb255c3942648f153fe66 (diff)
downloadmonzero-core-7499837a6fe8d3533e1360dce8f3ba230ff76042.tar.gz
monzero-core-7499837a6fe8d3533e1360dce8f3ba230ff76042.tar.xz
monzero-core-7499837a6fe8d3533e1360dce8f3ba230ff76042.zip
Merge pull request #7661
08e4497 Improve cryptonote (block and tx) binary read performance (Lee Clagett)
Diffstat (limited to 'src/serialization/debug_archive.h')
-rw-r--r--src/serialization/debug_archive.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/serialization/debug_archive.h b/src/serialization/debug_archive.h
index b04d6ae19..e8ccb9a58 100644
--- a/src/serialization/debug_archive.h
+++ b/src/serialization/debug_archive.h
@@ -38,6 +38,7 @@ struct debug_archive : public json_archive<W> {
typedef typename json_archive<W>::stream_type stream_type;
debug_archive(stream_type &s) : json_archive<W>(s) { }
+ stream_type& stream() { return this->stream_; }
};
template <class T>