mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Add preclaim functionality to transactors:
The preclaim() function performs static validity analysis of transactions using limited information from a ledger.
This commit is contained in:
committed by
Vinnie Falco
parent
ad8e9a76ed
commit
9b80081122
@@ -28,12 +28,13 @@
|
||||
namespace ripple {
|
||||
|
||||
ApplyContext::ApplyContext(Application& app_,
|
||||
OpenView& base, STTx const& tx_,
|
||||
ApplyFlags flags, Config const& config_,
|
||||
OpenView& base, STTx const& tx_, TER preclaimResult_,
|
||||
std::uint64_t baseFee_, ApplyFlags flags,
|
||||
beast::Journal journal_)
|
||||
: app(app_)
|
||||
, tx (tx_)
|
||||
, config (config_)
|
||||
, tx(tx_)
|
||||
, preclaimResult(preclaimResult_)
|
||||
, baseFee(baseFee_)
|
||||
, journal(journal_)
|
||||
, base_ (base)
|
||||
, flags_(flags)
|
||||
|
||||
Reference in New Issue
Block a user