mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 08:46:46 +00:00
Merge branch 'develop' into dangell7/batch-v1
This commit is contained in:
@@ -131,8 +131,8 @@ class Simulate_test : public beast::unit_test::suite
|
||||
BEAST_EXPECTS(env.current()->txCount() == 0, std::to_string(env.current()->txCount()));
|
||||
}
|
||||
|
||||
Json::Value
|
||||
getJsonMetadata(Json::Value txResult) const
|
||||
static Json::Value
|
||||
getJsonMetadata(Json::Value txResult)
|
||||
{
|
||||
if (txResult.isMember(jss::meta_blob))
|
||||
{
|
||||
@@ -1141,7 +1141,7 @@ class Simulate_test : public beast::unit_test::suite
|
||||
tx[jss::TransactionType] = jss::NFTokenMint;
|
||||
tx[sfNFTokenTaxon] = 1;
|
||||
|
||||
Json::Value nftokenId = to_string(token::getNextID(env, alice, 1));
|
||||
Json::Value const nftokenId = to_string(token::getNextID(env, alice, 1));
|
||||
// test nft synthetic
|
||||
testTxJsonMetadataField(env, tx, validateOutput, jss::nftoken_id, nftokenId);
|
||||
}
|
||||
@@ -1151,7 +1151,7 @@ class Simulate_test : public beast::unit_test::suite
|
||||
tx[jss::Account] = alice.human();
|
||||
tx[jss::TransactionType] = jss::MPTokenIssuanceCreate;
|
||||
|
||||
Json::Value mptIssuanceId = to_string(makeMptID(env.seq(alice), alice));
|
||||
Json::Value const mptIssuanceId = to_string(makeMptID(env.seq(alice), alice));
|
||||
// test mpt issuance id
|
||||
testTxJsonMetadataField(
|
||||
env, tx, validateOutput, jss::mpt_issuance_id, mptIssuanceId);
|
||||
|
||||
Reference in New Issue
Block a user