From d6dd63f5767e02a0aac7abca57d493818fea697f Mon Sep 17 00:00:00 2001
From: Awiteb
Date: Sat, 28 Jun 2025 12:51:43 +0000
Subject: [PATCH] chore: Use `bitcoin_hashes::Sha1` instead of
`bitcoin_hashes::sha1::Hash`
Signed-off-by: Awiteb
---
src/cli/commands/patch/send.rs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/cli/commands/patch/send.rs b/src/cli/commands/patch/send.rs
index 978c979..e5f094d 100644
--- a/src/cli/commands/patch/send.rs
+++ b/src/cli/commands/patch/send.rs
@@ -16,7 +16,7 @@
use std::{fs, str::FromStr};
-use bitcoin_hashes::sha1::Hash as HashSha1;
+use bitcoin_hashes::Sha1;
use clap::Args;
use futures::future;
use nostr::{
@@ -63,7 +63,7 @@ pub struct SendArgs {
/// Can be obtained by running `git rev-parse master` (replace 'master' with
/// your base branch name).
#[arg(long, value_name = "COMMIT-ID")]
- euc: HashSha1,
+ euc: Sha1,
/// Original patch ID if this is a revision of it
#[arg(long, value_name = "EVENT-ID")]
original_patch: Option,
@@ -156,7 +156,7 @@ async fn make_patch_series(
original_patch: Option,
relay_hint: Option,
repo_coordinates: Vec,
- euc: &HashSha1,
+ euc: &Sha1,
author_pkey: PublicKey,
) -> N34Result<(Vec, Vec)> {
let mut write_relays = Vec::new();
@@ -207,7 +207,7 @@ async fn make_patch(
reply_to: Option,
write_relay: Option<&RelayUrl>,
repo_coordinates: &[Coordinate],
- euc: &HashSha1,
+ euc: &Sha1,
author_pkey: PublicKey,
) -> (UnsignedEvent, Vec) {
let content_details = client.parse_content(&patch.body).await;