Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/protocols/protocol_explore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ void protocol_explore::do_get_address(uint8_t media, const hash_cptr& hash,
const address_handler& handler) NOEXCEPT
{
outpoints set{};
if (const auto ec = archive().to_address_outputs(stopping_, set, *hash))
if (const auto ec = archive().get_address_outputs(stopping_, set, *hash))
{
handler(ec, {}, {});
return;
Expand Down Expand Up @@ -1029,7 +1029,7 @@ void protocol_explore::do_get_address_confirmed(uint8_t media,
const hash_cptr& hash, const address_handler& handler) NOEXCEPT
{
outpoints set{};
if (const auto ec = archive().to_confirmed_unspent_outputs(stopping_, set,
if (const auto ec = archive().get_confirmed_unspent_outputs(stopping_, set,
*hash))
{
handler(ec, {}, {});
Expand Down
Loading