mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 15:20:54 +00:00
This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
#include <test/jtx/Env.h>
|
|
#include <test/jtx/acctdelete.h>
|
|
|
|
#include <xrpl/protocol/jss.h>
|
|
|
|
namespace xrpl {
|
|
namespace test {
|
|
namespace jtx {
|
|
|
|
// Delete account. If successful transfer remaining XRP to dest.
|
|
Json::Value
|
|
acctdelete(jtx::Account const& account, jtx::Account const& dest)
|
|
{
|
|
Json::Value jv;
|
|
jv[sfAccount.jsonName] = account.human();
|
|
jv[sfDestination.jsonName] = dest.human();
|
|
jv[sfTransactionType.jsonName] = jss::AccountDelete;
|
|
return jv;
|
|
}
|
|
|
|
// Close the ledger until the ledger sequence is large enough to close
|
|
// the account. If margin is specified, close the ledger so `margin`
|
|
// more closes are needed
|
|
void
|
|
incLgrSeqForAccDel(jtx::Env& env, jtx::Account const& acc, std::uint32_t margin)
|
|
{
|
|
using namespace jtx;
|
|
auto openLedgerSeq = [](jtx::Env& env) -> std::uint32_t { return env.current()->seq(); };
|
|
|
|
int const delta = [&]() -> int {
|
|
if (env.seq(acc) + 255 > openLedgerSeq(env))
|
|
return env.seq(acc) - openLedgerSeq(env) + 255 - margin;
|
|
return 0;
|
|
}();
|
|
env.test.BEAST_EXPECT(margin == 0 || delta >= 0);
|
|
for (int i = 0; i < delta; ++i)
|
|
env.close();
|
|
env.test.BEAST_EXPECT(openLedgerSeq(env) == env.seq(acc) + 255 - margin);
|
|
}
|
|
|
|
} // namespace jtx
|
|
} // namespace test
|
|
} // namespace xrpl
|