mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-10 14:08:40 +01:00
streams: Add SpanReader ignore method
Needed to deserialize some types from spans like CScripts
This commit is contained in:
@@ -182,6 +182,11 @@ public:
|
||||
memcpy(dst.data(), m_data.data(), dst.size());
|
||||
m_data = m_data.subspan(dst.size());
|
||||
}
|
||||
|
||||
void ignore(size_t n)
|
||||
{
|
||||
m_data = m_data.subspan(n);
|
||||
}
|
||||
};
|
||||
|
||||
/** Double ended buffer combining vector and stream-like interfaces.
|
||||
|
||||
Reference in New Issue
Block a user