Merge remote-tracking branch 'xrplf/develop' into sponsor

This commit is contained in:
tequ
2026-04-08 11:47:16 +09:00
741 changed files with 7547 additions and 6324 deletions

View File

@@ -1195,7 +1195,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);
}
@@ -1205,7 +1205,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);