aboutsummaryrefslogtreecommitdiff
path: root/src/streams.h
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-01-30 13:12:51 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-01-30 13:04:50 +0100
commitfa47b28dfc2a6577519e10da68ebd8da93568434 (patch)
tree3e33be5cadb978b36985a9eb20e692d5297d4f9d /src/streams.h
parent37fea41bbf851ddda571af98c2a555ed2ecb676c (diff)
downloadbitcoin-fa47b28dfc2a6577519e10da68ebd8da93568434.tar.xz
refactor: Remove unused CDataStream SerializeMany constructor
Diffstat (limited to 'src/streams.h')
-rw-r--r--src/streams.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/streams.h b/src/streams.h
index c12ba8777a..b20ef28a6d 100644
--- a/src/streams.h
+++ b/src/streams.h
@@ -358,14 +358,6 @@ public:
nType{nTypeIn},
nVersion{nVersionIn} {}
- template <typename... Args>
- CDataStream(int nTypeIn, int nVersionIn, Args&&... args)
- : nType{nTypeIn},
- nVersion{nVersionIn}
- {
- ::SerializeMany(*this, std::forward<Args>(args)...);
- }
-
int GetType() const { return nType; }
void SetVersion(int n) { nVersion = n; }
int GetVersion() const { return nVersion; }