wallet::SQLiteCursor::SQLiteCursor

Constructors

Synopses

Declared in <wallet/sqlite.h>

Construct a cursor over all records.

constexpr
explicit
SQLiteCursor() = default;
» more...

Construct a cursor limited to a key prefix range.

explicit
SQLiteCursor(
    std::vector<std::byte> start_range,
    std::vector<std::byte> end_range);
» more...

Parameters

NameDescription
start_rangeInclusive lower bound of the prefix range.
end_rangeExclusive upper bound of the prefix range.