Skip to content

Commit

Permalink
fixup! grpc: Add WaitBlockHeight method to grpc interface
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Oct 1, 2023
1 parent e76650a commit b3a14d3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions doc/schemas/waitblockheight.request.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"blockheight"
],
"properties": {
"blockheight": {
"type": "u32",
"description": "The current block height (>= blockheight parameter)"
},
"timeout": {
"type": "u32",
"description": "If timeout seconds is reached without the specified blockheight being reached, this command will fail with a code of 2000."
}
}
}

0 comments on commit b3a14d3

Please sign in to comment.