mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Replace calls to new(). (#243)
* Replace all unavoidable uses of `new` with `std::make_unique` or `std::make_shared`. * Fix some 80-column issues.
This commit is contained in:
committed by
Scott Schurr
parent
ef51128270
commit
d5193a776e
@@ -262,7 +262,7 @@ Env::submit (JTx const& jt)
|
||||
[&](OpenView& view, beast::Journal j)
|
||||
{
|
||||
std::tie(ter, didApply) = ripple::apply(
|
||||
view, *stx, applyFlags(),
|
||||
view, *stx, applyFlags(),
|
||||
directSigVerify, config,
|
||||
beast::Journal{});
|
||||
return didApply;
|
||||
|
||||
Reference in New Issue
Block a user