File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 79
79
* ffi(nostr): impl ` Display ` for ` Coordinate ` ([ Yuki Kishimoto] )
80
80
* ffi(sdk): change ` Connection::embedded_tor ` fingerprint for ` android ` and ` ios ` targets ([ Yuki Kishimoto] )
81
81
* cli: rename ` open ` command to ` shell ` ([ Yuki Kishimoto] )
82
+ * cli: rename ` serve-signer ` command to ` bunker ` ([ Yuki Kishimoto] )
82
83
83
84
### Added
84
85
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ pub enum Command {
33
33
/// Serve Nostr Connect signer
34
34
///
35
35
/// <https://github.com/nostr-protocol/nips/blob/master/46.md>
36
- ServeSigner ,
36
+ Bunker ,
37
37
}
38
38
39
39
#[ derive( Debug , Parser ) ]
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ async fn run() -> Result<()> {
84
84
tokio:: time:: sleep ( Duration :: from_secs ( 60 ) ) . await
85
85
}
86
86
}
87
- CliCommand :: ServeSigner => {
87
+ Command :: Bunker => {
88
88
// Ask secret key
89
89
let secret_key: SecretKey = io:: get_secret_key ( ) ?;
90
90
You can’t perform that action at this time.
0 commit comments