xrpld
Loading...
Searching...
No Matches
acctdelete.h
1#pragma once
2
3#include <test/jtx/Account.h>
4#include <test/jtx/Env.h>
5
6#include <xrpl/beast/unit_test/suite.h>
7
8namespace xrpl::test::jtx {
9
11json::Value
12acctdelete(Account const& account, Account const& dest);
13
14// Close the ledger until the ledger sequence is large enough to close
15// the account. If margin is specified, close the ledger so `margin`
16// more closes are needed
17void
18incLgrSeqForAccDel(jtx::Env& env, jtx::Account const& acc, std::uint32_t margin = 0);
19
20} // namespace xrpl::test::jtx
Immutable cryptographic account descriptor.
Definition jtx/Account.h:17
json::Value acctdelete(Account const &account, Account const &dest)
Delete account.
void incLgrSeqForAccDel(jtx::Env &env, jtx::Account const &acc, std::uint32_t margin=0)