Skip to content

Commit 25ad0f6

Browse files
Fix clippy by make the receipt public
1 parent dc4c9a0 commit 25ad0f6

File tree

1 file changed

+2
-2
lines changed
  • aggregation_mode/batcher/src

1 file changed

+2
-2
lines changed

aggregation_mode/batcher/src/db.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ enum TaskStatus {
2424
}
2525

2626
#[derive(Debug, Clone, sqlx::FromRow, sqlx::Type, serde::Serialize)]
27-
pub(crate) struct Receipt {
27+
pub struct Receipt {
2828
status: TaskStatus,
29-
pub(crate) merkle_path: Option<Vec<u8>>,
29+
pub merkle_path: Option<Vec<u8>>,
3030
nonce: i64,
3131
address: String,
3232
}

0 commit comments

Comments
 (0)