Skip to content

Commit

Permalink
chore(ci): fix cargo fmt (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
grtlr authored Jun 27, 2022
1 parent ebd200c commit 73f7f48
Showing 1 changed file with 15 additions and 17 deletions.
32 changes: 15 additions & 17 deletions src/types/stardust/block/payload/milestone/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,25 +292,23 @@ pub(crate) mod test {
bee_test::rand::milestone::rand_merkle_root(),
bee_test::rand::milestone::rand_merkle_root(),
"Foo".as_bytes().to_vec(),
bee::MilestoneOptions::new(vec![
bee::option::MilestoneOption::Receipt(
bee::option::ReceiptMilestoneOption::new(
1.into(),
false,
vec![
get_test_ed25519_migrated_funds_entry().try_into().unwrap(),
get_test_alias_migrated_funds_entry().try_into().unwrap(),
get_test_nft_migrated_funds_entry().try_into().unwrap(),
],
TreasuryTransactionPayload::new(
bee_test::rand::input::rand_treasury_input(),
bee_test::rand::output::rand_treasury_output(),
)
.unwrap(),
bee::MilestoneOptions::new(vec![bee::option::MilestoneOption::Receipt(
bee::option::ReceiptMilestoneOption::new(
1.into(),
false,
vec![
get_test_ed25519_migrated_funds_entry().try_into().unwrap(),
get_test_alias_migrated_funds_entry().try_into().unwrap(),
get_test_nft_migrated_funds_entry().try_into().unwrap(),
],
TreasuryTransactionPayload::new(
bee_test::rand::input::rand_treasury_input(),
bee_test::rand::output::rand_treasury_output(),
)
.unwrap(),
),
])
)
.unwrap(),
)])
.unwrap(),
)
.unwrap(),
Expand Down

0 comments on commit 73f7f48

Please sign in to comment.