Skip to content

Commit 7da113a

Browse files
committed
lint
1 parent b5163eb commit 7da113a

File tree

2 files changed

+3
-3
lines changed
  • crates/sovereign-sdk
    • full-node/db/sov-schema-db/src
    • rollup-interface/src

2 files changed

+3
-3
lines changed

crates/sovereign-sdk/full-node/db/sov-schema-db/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ use std::time::Instant;
2828
use ::metrics::{gauge, histogram};
2929
use anyhow::format_err;
3030
pub use iterator::{RawDbReverseIterator, ScanDirection, SchemaIterator, SeekKeyEncoder};
31-
pub use rocksdb;
3231
use rocksdb::backup::BackupEngineInfo;
33-
pub use rocksdb::DEFAULT_COLUMN_FAMILY_NAME;
32+
pub use rocksdb::{self, DEFAULT_COLUMN_FAMILY_NAME};
3433
use rocksdb::{DBIterator, ReadOptions, WriteBatch};
3534
use thiserror::Error;
3635
use tracing::info;

crates/sovereign-sdk/rollup-interface/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ pub use std::rc::Rc as RefCount;
2424
#[cfg(feature = "native")]
2525
pub use std::sync::Arc as RefCount;
2626

27+
pub use anyhow;
28+
pub use digest;
2729
pub use network::*;
2830
pub use node::*;
2931
pub use state_machine::*;
30-
pub use {anyhow, digest};

0 commit comments

Comments
 (0)