File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
covenant-signer/signerservice/types Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
39
39
40
40
### Improvements
41
41
42
+ * [ #119 ] ( https://github.com/babylonlabs-io/covenant-emulator/pull/119 ) Make passphrase for Unlock optional.
42
43
* [ #116 ] ( https://github.com/babylonlabs-io/covenant-emulator/pull/116 ) Add health check to prometheus server.
43
44
* [ #117 ] ( https://github.com/babylonlabs-io/covenant-emulator/pull/117 ) Add health check on startup, increase gas adjustment and update docs.
44
45
Original file line number Diff line number Diff line change 1
1
package types
2
2
3
+ // UnlockRequest represents a request to unlock the key.
4
+ // Note: When using the file keyring backend, the passphrase will be prompted
5
+ // interactively in the terminal, so it doesn't need to be included in this request.
3
6
type UnlockRequest struct {
4
- Passphrase string `json:"passphrase"`
7
+ Passphrase string `json:"passphrase,omitempty "`
5
8
}
6
9
7
10
type UnlockResponse struct {}
You can’t perform that action at this time.
0 commit comments