mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-07 02:36:47 +00:00
This change renames all occurrences of `namespace ripple` and `ripple::` to `namespace xrpl` and `xrpl::`, respectively, as well as the names of test suites. It also provides a script to allow developers to replicate the changes in their local branch or fork to avoid conflicts.
22 lines
327 B
C++
22 lines
327 B
C++
#include <test/jtx/seq.h>
|
|
|
|
#include <xrpl/protocol/jss.h>
|
|
|
|
namespace xrpl {
|
|
namespace test {
|
|
namespace jtx {
|
|
|
|
void
|
|
seq::operator()(Env&, JTx& jt) const
|
|
{
|
|
if (!manual_)
|
|
return;
|
|
jt.fill_seq = false;
|
|
if (num_)
|
|
jt[jss::Sequence] = *num_;
|
|
}
|
|
|
|
} // namespace jtx
|
|
} // namespace test
|
|
} // namespace xrpl
|