We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69ef2a6 commit 8d9cc72Copy full SHA for 8d9cc72
crates/storage/db/src/mdbx/tx.rs
@@ -69,7 +69,11 @@ impl<K: TransactionKind> Tx<K> {
69
70
impl<K: TransactionKind> Clone for Tx<K> {
71
fn clone(&self) -> Self {
72
- Self { inner: self.inner.clone(), db_handles: self.db_handles.clone() }
+ Self {
73
+ inner: self.inner.clone(),
74
+ metrics: self.metrics.clone(),
75
+ db_handles: self.db_handles.clone(),
76
+ }
77
}
78
79
0 commit comments