MCPcopy Create free account
hub / github.com/bcndev/bytecoin / load_version

Method load_version

src/Core/WalletSerializationV1.cpp:249–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

247}
248
249uint32_t WalletSerializerV1::load_version(common::IInputStream &source) {
250 seria::BinaryInputStream s(source);
251
252 uint32_t version = std::numeric_limits<uint32_t>::max();
253 ser(version, s);
254
255 return version;
256}
257
258void WalletSerializerV1::load_iv(common::IInputStream &source, crypto::chacha_iv &iv) {
259 seria::BinaryInputStream s(source);

Callers

nothing calls this directly

Calls 1

serFunction · 0.70

Tested by

no test coverage detected