Skip to content

Commit 4f97651

Browse files
committed
remove unnecessary clone
1 parent f70dad7 commit 4f97651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chain/ethereum/src/chain.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ impl BlockStreamBuilder<Chain> for EthereumStreamBuilder {
125125
.logger_factory
126126
.subgraph_logger(&deployment)
127127
.new(o!("component" => "BlockStream"));
128-
let chain_store = chain.chain_store().clone();
128+
let chain_store = chain.chain_store();
129129
let chain_head_update_stream = chain
130130
.chain_head_update_listener
131131
.subscribe(chain.name.clone(), logger.clone());

0 commit comments

Comments
 (0)