Przeglądaj źródła

doc/Makefile: use correct darkfid rpc files

skoupidi 2 lat temu
rodzic
commit
025912d245
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      doc/Makefile

+ 2 - 1
doc/Makefile

@@ -21,7 +21,8 @@ all: $(JSONRPC)
 
 $(DARKFID_JSONRPC):
 	@echo "# darkfid JSON-RPC API" > $@
-	for i in blockchain tx wallet misc; do \
+	./build_jsonrpc.py ../bin/darkfid/src/rpc.rs >> $@
+	for i in blockchain tx; do \
 		echo "## $$i methods" >> $@ ;\
 		./build_jsonrpc.py ../bin/darkfid/src/rpc_$$i.rs >> $@ ;\
 	done