Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Proto/nodeguard.proto
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,8 @@ message WithdrawalRequest {
optional string reference_id = 4;
uint64 confirmations = 5;
optional string tx_id = 6;
// in JSON format
optional string request_metadata = 7;
}

message GetWithdrawalsRequestStatusResponse {
Expand Down
1 change: 1 addition & 0 deletions src/Rpc/NodeGuardService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1301,6 +1301,7 @@ private async Task<GetWithdrawalsRequestStatusResponse> GetWithdrawalsRequestSta
ReferenceId = withdrawalRequest.ReferenceId ?? "",
Confirmations = confirmations,
TxId = withdrawalRequest.TxId ?? "",
RequestMetadata = withdrawalRequest.RequestMetadata ?? "",
});
}

Expand Down
Loading