Skip to content

Commit 8c36449

Browse files
committed
Rename setup_ten_block_store() (from 8).
1 parent 6bc14b4 commit 8c36449

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/protocols/blocks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const chain::block block9{ block9_data, true };
8080
const server::settings::embedded_pages admin{};
8181
const server::settings::embedded_pages native{};
8282

83-
bool setup_eight_block_store(query_t& query) NOEXCEPT
83+
bool setup_ten_block_store(query_t& query) NOEXCEPT
8484
{
8585
using namespace database;
8686
return query.initialize(genesis) &&

test/protocols/blocks.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ extern const system::chain::block block7;
8484
extern const system::chain::block block8;
8585
extern const system::chain::block block9;
8686

87-
bool setup_eight_block_store(query_t& query) NOEXCEPT;
87+
bool setup_ten_block_store(query_t& query) NOEXCEPT;
8888

8989
#endif

test/protocols/electrum/electrum.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ electrum_setup_fixture::electrum_setup_fixture()
5959

6060
// Create and populate the store.
6161
BOOST_REQUIRE_MESSAGE(!ec, ec.message());
62-
BOOST_REQUIRE_MESSAGE(setup_eight_block_store(query_), "electrum initialize");
62+
BOOST_REQUIRE_MESSAGE(setup_ten_block_store(query_), "electrum initialize");
6363

6464
// Run the server.
6565
std::promise<code> running{};

0 commit comments

Comments
 (0)