mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 01:36:24 +01:00
make: check that all RPCs are defined in yaml
This commit is contained in:
parent
558d63718b
commit
f48b0289f5
1 changed files with 1 additions and 0 deletions
1
Makefile
1
Makefile
|
@ -210,6 +210,7 @@ rpc-format:
|
|||
|
||||
rpc-check: rpc
|
||||
@$(call print, "Verifying protos.")
|
||||
for rpc in $$(find lnrpc/ -name "*.proto" | $(XARGS) awk '/ rpc /{print $$2}'); do if ! grep -q $$rpc lnrpc/rest-annotations.yaml; then echo "RPC $$rpc not added to lnrpc/rest-annotations.yaml"; exit 1; fi; done
|
||||
if test -n "$$(git describe --dirty | grep dirty)"; then echo "Protos not properly formatted or not compiled with v3.4.0"; git status; git diff; exit 1; fi
|
||||
|
||||
mobile-rpc:
|
||||
|
|
Loading…
Add table
Reference in a new issue