Files
rippled/src/test/jtx/impl/deposit.cpp
Ayaz Salikhov 5f638f5553 chore: Set ColumnLimit to 120 in clang-format (#6288)
This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
2026-01-28 18:09:50 +00:00

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