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/json/json_value.h>
7
8#include <cstdint>
9
10namespace xrpl::test::jtx {
11
15json::Value
16acctdelete(Account const& account, Account const& dest);
17
18// Close the ledger until the ledger sequence is large enough to close
19// the account. If margin is specified, close the ledger so `margin`
20// more closes are needed
21void
22incLgrSeqForAccDel(jtx::Env& env, jtx::Account const& acc, std::uint32_t margin = 0);
23
24} // namespace xrpl::test::jtx
Immutable cryptographic account descriptor.
Definition jtx/Account.h:21
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)