Skip to content

Commit

Permalink
[FOLD] Uncomment an assert that was disabled during testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ximinez committed Sep 11, 2020
1 parent 33303ab commit 7e3ffd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ripple/app/main/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ ApplicationImp::setup()
for (auto const& name : amendments)
{
auto const f = getRegisteredFeature(name);
// BOOST_ASSERT(f);
assert(f);
if (f)
hashes.push_back(to_string(*f) + " " + name);
}
Expand Down

0 comments on commit 7e3ffd7

Please sign in to comment.