Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
anorth committed Jul 31, 2023
1 parent 662c463 commit dde209f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions actors/miner/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5033,9 +5033,7 @@ fn batch_activate_deals_and_claim_allocations(
true => ext::verifreg::ClaimAllocationsReturn {
sector_results: BatchReturn::ok(verified_claims.len() as u32),
sector_claims: vec![
ext::verifreg::SectorClaimSummary {
claimed_space: BigInt::zero()
};
ext::verifreg::SectorClaimSummary { claimed_space: BigInt::zero() };
verified_claims.len()
],
},
Expand Down
2 changes: 1 addition & 1 deletion actors/verifreg/tests/verifreg_actor_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ mod allocs_claims {
];
reqs[0].claims[1].size = PaddedPieceSize(0);
expect_abort(
ExitCode::USR_FORBIDDEN,
ExitCode::USR_ILLEGAL_ARGUMENT,
h.claim_allocations(&rt, PROVIDER1, reqs, 0, true),
);
rt.reset();
Expand Down

0 comments on commit dde209f

Please sign in to comment.