Skip to content

Commit

Permalink
fix: clone trait
Browse files Browse the repository at this point in the history
  • Loading branch information
IroncladDev committed Jun 21, 2024
1 parent b288108 commit da8b4f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wrappers/fedimint_clientd_rs/src/client/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::collections::HashMap;

#[derive(Deserialize, Serialize, Debug)]
#[derive(Deserialize, Serialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct FederationInfo {
pub network: String,
Expand All @@ -14,7 +14,7 @@ pub struct FederationInfo {
pub denominations_msat: HashMap<String, u64>,
}

#[derive(Deserialize, Serialize, Debug)]
#[derive(Deserialize, Serialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct OperationOutput {
pub id: Value,
Expand Down

0 comments on commit da8b4f6

Please sign in to comment.