Skip to content

Commit

Permalink
fix: fix linting
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Gellis <simongellis@gmail.com>
  • Loading branch information
SupernaviX committed Feb 14, 2025
1 parent db5fa94 commit 4e38327
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/generate-key/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct Args {
#[arg(short, long, default_value = "infra/wallet")]
wallet_dir: PathBuf,
#[arg(short, long)]
testnet: bool
testnet: bool,
}

#[derive(Serialize)]
Expand Down Expand Up @@ -50,7 +50,7 @@ fn generate_signing_key(testnet: bool) -> Result<(String, SigningKeyContents)> {
hex::encode(bytes)
};

let contents = SigningKeyContents {
let contents = SigningKeyContents {
type_: "PaymentSigningKeyShelley_ed25519".into(),
description: "Payment Signing Key".into(),
cbor_hex,
Expand All @@ -71,4 +71,4 @@ fn main() -> Result<()> {
println!("Signing key has been saved to {}", path.display());

Ok(())
}
}

0 comments on commit 4e38327

Please sign in to comment.