Skip to content

Commit

Permalink
remove-error-trace (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZanCorDX authored Dec 7, 2024
1 parent 90c1529 commit 505ac28
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/block_descriptor_bidding/slot_bidder_adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ impl FullUnfinishedBlockBuildingSink for SlotBidderAdapter {
fn new_block(&self, block: Box<dyn BlockBuildingHelper>) {
let true_block_value = match block.true_block_value() {
Ok(true_block_value) => true_block_value,
Err(err) => {
error!(err=?err,"No true block value for block");
Err(_) => {
return;
}
};
Expand Down

0 comments on commit 505ac28

Please sign in to comment.