mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 07:10:53 +00:00
15 lines
252 B
C++
15 lines
252 B
C++
#include <test/jtx/last_ledger_sequence.h>
|
|
|
|
#include <test/jtx/Env.h>
|
|
#include <test/jtx/JTx.h>
|
|
|
|
namespace xrpl::test::jtx {
|
|
|
|
void
|
|
LastLedgerSeq::operator()(Env&, JTx& jt) const
|
|
{
|
|
jt["LastLedgerSequence"] = num_;
|
|
}
|
|
|
|
} // namespace xrpl::test::jtx
|