MCPcopy Create free account
hub / github.com/ElementsProject/elements / NullData

Class NullData

src/script/standard.h:177–189  ·  view source on GitHub ↗

ELEMENTS:

Source from the content-addressed store, hash-verified

175
176// ELEMENTS:
177class NullData
178{
179public:
180 std::vector<std::vector<unsigned char>> null_data;
181 friend bool operator==(const NullData &a, const NullData &b) { return true; }
182 friend bool operator<(const NullData &a, const NullData &b) { return true; }
183
184 NullData& operator<<(std::vector<unsigned char> b)
185 {
186 null_data.push_back(b);
187 return *this;
188 }
189};
190
191// ELEMENTS
192class SetBlindingPubKeyVisitor

Callers

nothing calls this directly

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected