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