Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ test_libbitcoin_node_test_SOURCES = \
test/error.cpp \
test/full_node.cpp \
test/main.cpp \
test/node.cpp \
test/settings.cpp \
test/test.cpp \
test/test.hpp \
Expand Down
1 change: 0 additions & 1 deletion builds/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ if (with-tests)
"../../test/error.cpp"
"../../test/full_node.cpp"
"../../test/main.cpp"
"../../test/node.cpp"
"../../test/settings.cpp"
"../../test/test.cpp"
"../../test/test.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@
<ClCompile Include="..\..\..\..\test\error.cpp" />
<ClCompile Include="..\..\..\..\test\full_node.cpp" />
<ClCompile Include="..\..\..\..\test\main.cpp" />
<ClCompile Include="..\..\..\..\test\node.cpp" />
<ClCompile Include="..\..\..\..\test\protocols\protocol.cpp" />
<ClCompile Include="..\..\..\..\test\sessions\session.cpp" />
<ClCompile Include="..\..\..\..\test\settings.cpp" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@
<ClCompile Include="..\..\..\..\test\main.cpp">
<Filter>src</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\test\node.cpp">
<Filter>src</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\test\protocols\protocol.cpp">
<Filter>src\protocols</Filter>
</ClCompile>
Expand Down
7 changes: 5 additions & 2 deletions src/chasers/chaser_storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,11 @@ void chaser_storage::stopping(const code& ec) NOEXCEPT
void chaser_storage::do_stopping(const code&) NOEXCEPT
{
BC_ASSERT(stranded());
disk_timer_->stop();
disk_timer_.reset();
if (disk_timer_)
{
disk_timer_->stop();
disk_timer_.reset();
}
}

// event handlers
Expand Down
28 changes: 0 additions & 28 deletions test/node.cpp

This file was deleted.

Loading