Skip to content

Commit 8d9cc72

Browse files
committed
wip
1 parent 69ef2a6 commit 8d9cc72

File tree

1 file changed

+5
-1
lines changed
  • crates/storage/db/src/mdbx

1 file changed

+5
-1
lines changed

crates/storage/db/src/mdbx/tx.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ impl<K: TransactionKind> Tx<K> {
6969

7070
impl<K: TransactionKind> Clone for Tx<K> {
7171
fn clone(&self) -> Self {
72-
Self { inner: self.inner.clone(), db_handles: self.db_handles.clone() }
72+
Self {
73+
inner: self.inner.clone(),
74+
metrics: self.metrics.clone(),
75+
db_handles: self.db_handles.clone(),
76+
}
7377
}
7478
}
7579

0 commit comments

Comments
 (0)