Add missing XOnlyPubKey::data() to get mutable data

This is needed for consistency, and also to allow std::span construction
from XOnlyPubKey.
This commit is contained in:
MarcoFalke 2023-12-22 15:45:33 +01:00
parent 2ac2821a74
commit 999962d68d
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -285,10 +285,11 @@ public:
CPubKey GetEvenCorrespondingCPubKey() const;
const unsigned char& operator[](int pos) const { return *(m_keydata.begin() + pos); }
const unsigned char* data() const { return m_keydata.begin(); }
static constexpr size_t size() { return decltype(m_keydata)::size(); }
const unsigned char* data() const { return m_keydata.begin(); }
const unsigned char* begin() const { return m_keydata.begin(); }
const unsigned char* end() const { return m_keydata.end(); }
unsigned char* data() { return m_keydata.begin(); }
unsigned char* begin() { return m_keydata.begin(); }
unsigned char* end() { return m_keydata.end(); }
bool operator==(const XOnlyPubKey& other) const { return m_keydata == other.m_keydata; }