Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
Adding partialEq to Config so it can be tested (#24)
Browse files Browse the repository at this point in the history
* Adding config from toml

* Make config PartialEq, so it can be tested

* Cleaning up
  • Loading branch information
citizen-stig authored May 17, 2023
1 parent e338ade commit 66b9151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/da_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async fn fetch_needed_shares_by_header(
}

/// Runtime configuration for the DA service
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
#[derive(Debug, Clone, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct DaServiceConfig {
/// The jwt used to authenticate with the Celestia rpc server
pub celestia_rpc_auth_token: String,
Expand Down

0 comments on commit 66b9151

Please sign in to comment.