mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-19 13:22:02 +02:00
Make script/standard's BaseHash Span-convertible
This commit is contained in:
parent
e63dcc3a67
commit
2a2182c387
@ -79,6 +79,9 @@ public:
|
|||||||
{
|
{
|
||||||
return m_hash.size();
|
return m_hash.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned char* data() { return m_hash.data(); }
|
||||||
|
const unsigned char* data() const { return m_hash.data(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
/** A reference to a CScript: the Hash160 of its serialization (see script.h) */
|
/** A reference to a CScript: the Hash160 of its serialization (see script.h) */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user