We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 930bdbe commit 1cfc561Copy full SHA for 1cfc561
proto/clementine.proto
@@ -655,8 +655,16 @@ message RawTxWithRbfInfo {
655
RbfSigningInfoRpc rbf_info = 2;
656
}
657
658
+message OperatorWithrawalResponse {
659
+ XOnlyPublicKeyRpc operator_xonly_pk = 1;
660
+ oneof response {
661
+ RawSignedTx raw_tx = 2;
662
+ string error = 3;
663
+ }
664
+}
665
+
666
message AggregatorWithdrawResponse {
- repeated string withdraw_responses = 1;
667
+ repeated OperatorWithrawalResponse withdraw_responses = 1;
668
669
670
message GetEmergencyStopTxRequest {
@@ -725,4 +733,4 @@ service ClementineAggregator {
725
733
rpc InternalGetEmergencyStopTx(GetEmergencyStopTxRequest) returns (GetEmergencyStopTxResponse) {}
726
734
727
735
rpc Vergen(Empty) returns (VergenResponse) {}
728
-}
736
0 commit comments