-
Notifications
You must be signed in to change notification settings - Fork 123
looprpc: fix several minor bugs #926
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
301c475
f2715e3
a852596
1480536
d7d9e2d
6d3f65a
1af9cb7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1678,9 +1678,9 @@ message WithdrawDepositsResponse { | |
| string withdrawal_tx_hash = 1; | ||
|
|
||
| /* | ||
| The pkscript of the withdrawal transaction. | ||
| The destination address of the withdrawal transaction. | ||
| */ | ||
| string pk_script = 2; | ||
| string address = 2; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just a note: this is a breaking change for json clients, but I don't think this is a problem.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same, I think it's not a problem atm. |
||
| } | ||
|
|
||
| message OutPoint { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡