mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 07:10:53 +00:00
17 lines
311 B
C++
17 lines
311 B
C++
#include <test/jtx/delivermin.h>
|
|
|
|
#include <test/jtx/Env.h>
|
|
#include <test/jtx/JTx.h>
|
|
|
|
#include <xrpl/protocol/jss.h>
|
|
|
|
namespace xrpl::test::jtx {
|
|
|
|
void
|
|
DeliverMin::operator()(Env& env, JTx& jt) const
|
|
{
|
|
jt.jv[jss::DeliverMin] = amount_.getJson(JsonOptions::Values::None);
|
|
}
|
|
|
|
} // namespace xrpl::test::jtx
|