book: tx lifetime

This commit is contained in:
parazyd
2023-04-15 09:29:18 +02:00
parent 462c971eee
commit 75c4416711
5 changed files with 114 additions and 9 deletions

View File

@@ -11,9 +11,9 @@ JSONRPC = \
all: $(JSONRPC)
mdbook build
cp -f theme/logo* book/html/
cp -f theme/logo* book/
$(MAKE) -C ../ rustdoc
cp -r ../target/doc/* book/html/development/
cp -r ../target/doc/* book/development/
$(DARKFID_JSONRPC):
@echo "# darkfid JSON-RPC API" > $@
@@ -34,6 +34,6 @@ clean:
rm -rf book
github: all
ghp-import -m "Generate mdbook" -b gh-pages book/html
ghp-import -m "Generate mdbook" -b gh-pages book/
.PHONY: $(JSONRPC) all clean github