Skip to content

Commit 20cd582

Browse files
committed
style: fix clippy
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent fcc64b0 commit 20cd582

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

tap_core/src/manager/adapters/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
//! allows for easy integration with various storage solutions and verification
99
//! procedures, thereby making the library adaptable to a wide range of use cases.
1010
11-
mod signature;
1211
mod rav;
1312
mod receipt;
13+
mod signature;
1414

15-
pub use signature::SignatureChecker;
1615
pub use rav::*;
1716
pub use receipt::*;
17+
pub use signature::SignatureChecker;

tap_core/src/manager/tap_manager.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44
use alloy::dyn_abi::Eip712Domain;
55

6-
use super::adapters::{SignatureChecker, RAVRead, RAVStore, ReceiptDelete, ReceiptRead, ReceiptStore};
6+
use super::adapters::{
7+
RAVRead, RAVStore, ReceiptDelete, ReceiptRead, ReceiptStore, SignatureChecker,
8+
};
79
use crate::{
810
rav::{RAVRequest, ReceiptAggregateVoucher, SignedRAV},
911
receipt::{

tap_core/src/rav/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use crate::{
55
rav::{ReceiptAggregateVoucher, SignedRAV},
66
receipt::{
7-
state::{Failed, Checked},
7+
state::{Checked, Failed},
88
ReceiptWithState,
99
},
1010
Error,

tap_integration_tests/tests/indexer_mock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use jsonrpsee::{
1717
use tap_aggregator::jsonrpsee_helpers;
1818
use tap_core::{
1919
manager::{
20-
adapters::{SignatureChecker, RAVRead, RAVStore, ReceiptRead, ReceiptStore},
20+
adapters::{RAVRead, RAVStore, ReceiptRead, ReceiptStore, SignatureChecker},
2121
Manager,
2222
},
2323
rav::SignedRAV,

0 commit comments

Comments
 (0)