upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/bin/git_remote_nostr
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-04-03 17:13:50 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2025-04-03 17:13:50 +0100
commit29688c2cfe32a27dd9faabd66691f6db1cd4818a (patch)
tree3ee2c5f93d44c4c9a0cc0d2bc21f5a23287c0b53 /src/bin/git_remote_nostr
parent3e37a93e076a62516d3e24c1ab65cec5d6e66e3e (diff)
feat(send): add description to event signing process
resolving nostr:note1qu8le4a8qz9hhxy6q85txejcq0kln0r3s9vdtwrhtqwvauc6nxuqn3fj0z so it doesnt appear frozen when there are lots of events being signed by a remote signer
Diffstat (limited to 'src/bin/git_remote_nostr')
-rw-r--r--src/bin/git_remote_nostr/push.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/bin/git_remote_nostr/push.rs b/src/bin/git_remote_nostr/push.rs
index 3e2282a..6113c0a 100644
--- a/src/bin/git_remote_nostr/push.rs
+++ b/src/bin/git_remote_nostr/push.rs
@@ -1348,6 +1348,7 @@ async fn create_merge_status(
1348 .concat(), 1348 .concat(),
1349 ), 1349 ),
1350 signer, 1350 signer,
1351 "PR merge".to_string(),
1351 ) 1352 )
1352 .await 1353 .await
1353} 1354}
@@ -1536,7 +1537,12 @@ impl BuildRepoState for RepoState {
1536 value.clone(), 1537 value.clone(),
1537 ])); 1538 ]));
1538 } 1539 }
1539 let event = sign_event(EventBuilder::new(STATE_KIND, "").tags(tags), signer).await?; 1540 let event = sign_event(
1541 EventBuilder::new(STATE_KIND, "").tags(tags),
1542 signer,
1543 "git state".to_string(),
1544 )
1545 .await?;
1540 Ok(RepoState { 1546 Ok(RepoState {
1541 identifier, 1547 identifier,
1542 state, 1548 state,