Skip to content

Commit e658252

Browse files
committed
Adapt to database rename of get_[x]_outpoints().
1 parent 106a8a5 commit e658252

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/protocols/native/protocol_native_address.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void protocol_native::do_get_address(uint8_t media, bool turbo,
6060

6161
database::outpoints set{};
6262
const auto& query = archive();
63-
const auto ec = query.get_address_outputs(stopping_, set, *hash, turbo);
63+
const auto ec = query.get_address_outpoints(stopping_, set, *hash, turbo);
6464
POST(complete_get_address, ec, media, std::move(set));
6565
}
6666

@@ -138,7 +138,8 @@ void protocol_native::do_get_address_confirmed(uint8_t media, bool turbo,
138138

139139
database::outpoints set{};
140140
const auto& query = archive();
141-
auto ec = query.get_confirmed_unspent_outputs(stopping_, set, *hash, turbo);
141+
auto ec = query.get_confirmed_unspent_outpoints(stopping_, set, *hash,
142+
turbo);
142143
POST(complete_get_address, ec, media, std::move(set));
143144
}
144145

0 commit comments

Comments
 (0)