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.
74 lines
1.8 KiB
C++
74 lines
1.8 KiB
C++
#include <test/jtx/deposit.h>
|
|
|
|
#include <xrpl/protocol/jss.h>
|
|
|
|
namespace xrpl {
|
|
namespace test {
|
|
namespace jtx {
|
|
|
|
namespace deposit {
|
|
|
|
// Add DepositPreauth.
|
|
Json::Value
|
|
auth(jtx::Account const& account, jtx::Account const& auth)
|
|
{
|
|
Json::Value jv;
|
|
jv[sfAccount.jsonName] = account.human();
|
|
jv[sfAuthorize.jsonName] = auth.human();
|
|
jv[sfTransactionType.jsonName] = jss::DepositPreauth;
|
|
return jv;
|
|
}
|
|
|
|
// Remove DepositPreauth.
|
|
Json::Value
|
|
unauth(jtx::Account const& account, jtx::Account const& unauth)
|
|
{
|
|
Json::Value jv;
|
|
jv[sfAccount.jsonName] = account.human();
|
|
jv[sfUnauthorize.jsonName] = unauth.human();
|
|
jv[sfTransactionType.jsonName] = jss::DepositPreauth;
|
|
return jv;
|
|
}
|
|
|
|
// Add DepositPreauth.
|
|
Json::Value
|
|
authCredentials(jtx::Account const& account, std::vector<AuthorizeCredentials> const& auth)
|
|
{
|
|
Json::Value jv;
|
|
jv[sfAccount.jsonName] = account.human();
|
|
jv[sfAuthorizeCredentials.jsonName] = Json::arrayValue;
|
|
auto& arr(jv[sfAuthorizeCredentials.jsonName]);
|
|
for (auto const& o : auth)
|
|
{
|
|
Json::Value j2;
|
|
j2[jss::Credential] = o.toJson();
|
|
arr.append(std::move(j2));
|
|
}
|
|
jv[sfTransactionType.jsonName] = jss::DepositPreauth;
|
|
return jv;
|
|
}
|
|
|
|
// Remove DepositPreauth.
|
|
Json::Value
|
|
unauthCredentials(jtx::Account const& account, std::vector<AuthorizeCredentials> const& auth)
|
|
{
|
|
Json::Value jv;
|
|
jv[sfAccount.jsonName] = account.human();
|
|
jv[sfUnauthorizeCredentials.jsonName] = Json::arrayValue;
|
|
auto& arr(jv[sfUnauthorizeCredentials.jsonName]);
|
|
for (auto const& o : auth)
|
|
{
|
|
Json::Value j2;
|
|
j2[jss::Credential] = o.toJson();
|
|
arr.append(std::move(j2));
|
|
}
|
|
jv[sfTransactionType.jsonName] = jss::DepositPreauth;
|
|
return jv;
|
|
}
|
|
|
|
} // namespace deposit
|
|
|
|
} // namespace jtx
|
|
} // namespace test
|
|
} // namespace xrpl
|