Remove unfunded offers on tecOVERSIZE

This commit is contained in:
JoelKatz
2015-09-08 12:26:29 -07:00
committed by Nik Bougalis
parent 332114c02a
commit 3759c553b0
10 changed files with 139 additions and 17 deletions

View File

@@ -52,4 +52,19 @@ ApplyContext::apply(TER ter)
view_->apply(base_, tx, ter, journal);
}
std::size_t
ApplyContext::size()
{
return view_->size();
}
void
ApplyContext::visit (std::function <void (
uint256 const&, bool,
std::shared_ptr<SLE const> const&,
std::shared_ptr<SLE const> const&)> const& func)
{
view_->visit(base_, func);
}
} // ripple