Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpolaczyk committed Feb 19, 2024
1 parent 797ebc4 commit 3a48f99
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions substrate/client/basic-authorship/src/basic_authorship.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,11 @@ impl<A, C, PR> Clone for ProposerFactory<A, C, PR> {
client: self.client.clone(),
transaction_pool: self.transaction_pool.clone(),
metrics: self.metrics.clone(),
default_block_size_limit: self.default_block_size_limit.clone(),
soft_deadline_percent: self.soft_deadline_percent.clone(),
default_block_size_limit: self.default_block_size_limit,
soft_deadline_percent: self.soft_deadline_percent,
telemetry: self.telemetry.clone(),
include_proof_in_block_size_estimation: self
.include_proof_in_block_size_estimation
.clone(),
_phantom: self._phantom.clone(),
include_proof_in_block_size_estimation: self.include_proof_in_block_size_estimation,
_phantom: self._phantom,
}
}
}
Expand Down

0 comments on commit 3a48f99

Please sign in to comment.