fixed GCC issue with fields initialised in wrong order

This commit is contained in:
Some Random Crypto Guy
2025-06-12 16:54:08 +01:00
parent 1e81092e59
commit cbde471d91
2 changed files with 4 additions and 4 deletions

View File

@@ -128,8 +128,8 @@ static bool build_payment_proposals(std::vector<carrot::CarrotPaymentProposalV1>
normal_payment_proposals_inout.push_back(carrot::CarrotPaymentProposalV1{
.destination = dest,
.amount = tx_dest_entry.amount,
.asset_type = tx_dest_entry.asset_type,
.randomness = carrot::gen_janus_anchor(),
.asset_type = tx_dest_entry.asset_type
});
}