-
Notifications
You must be signed in to change notification settings - Fork 913
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix : implements the
bkpr-listincome
plugin for grpc interface.
Changelog-added support for the `bkpr-listincome` for grpc interface Signed-off-by: harshit933 <[email protected]>
- Loading branch information
1 parent
6bf97ac
commit 85b79bc
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"added": "pre-v0.10.1", | ||
"required": [], | ||
"additionalProperties": false, | ||
"properties": { | ||
"consolidate_fees": { | ||
"type": "boolean", | ||
"description": "A brief description about consolidate_fees" | ||
}, | ||
"start_time": { | ||
"type": "u32", | ||
"description": "Filters the events after the time" | ||
}, | ||
"end_time": { | ||
"type": "u32", | ||
"description": "Filters the events up to the timestamp" | ||
} | ||
} | ||
} |