mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 07:10:53 +00:00
17 lines
279 B
C++
17 lines
279 B
C++
#include <test/jtx/txflags.h>
|
|
|
|
#include <test/jtx/Env.h>
|
|
#include <test/jtx/JTx.h>
|
|
|
|
#include <xrpl/protocol/jss.h>
|
|
|
|
namespace xrpl::test::jtx {
|
|
|
|
void
|
|
Txflags::operator()(Env&, JTx& jt) const
|
|
{
|
|
jt[jss::Flags] = v_ /*| tfFullyCanonicalSig*/;
|
|
}
|
|
|
|
} // namespace xrpl::test::jtx
|