-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add block cache, remove sqlite3 #149
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,13 +73,9 @@ docker_img_run_zcashd: | |
docker_img_stop_zcashd: | ||
docker exec -i zcashdlwd zcash-cli stop | ||
|
||
# Start the lightwalletd ingester in the zcashdlwd container | ||
docker_img_run_lightwalletd_ingest: | ||
docker exec -i zcashdlwd ingest --conf-file /home/zcash/.zcash/zcash.conf --db-path /db/sql.db --log-file /logs/ingest.log | ||
|
||
# Start the lightwalletd server in the zcashdlwd container | ||
docker_img_run_lightwalletd_insecure_server: | ||
docker exec -i zcashdlwd server --very-insecure=true --conf-file /home/zcash/.zcash/zcash.conf --db-path /db/sql.db --log-file /logs/server.log --bind-addr 127.0.0.1:18232 | ||
docker exec -i zcashdlwd server --no-tls-very-insecure=true --conf-file /home/zcash/.zcash/zcash.conf --log-file /logs/server.log --bind-addr 127.0.0.1:18232 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't test this yet |
||
|
||
# Remove and delete ALL images and containers in Docker; assumes containers are stopped | ||
docker_remove_all: | ||
|
@@ -91,11 +87,9 @@ dep: | |
|
||
# Build binary | ||
build: | ||
GO111MODULE=on CGO_ENABLED=1 go build -i -v ./cmd/ingest | ||
GO111MODULE=on CGO_ENABLED=1 go build -i -v ./cmd/server | ||
|
||
build_rel: | ||
GO111MODULE=on CGO_ENABLED=1 GOOS=linux go build -ldflags="-s -w" -i -v ./cmd/ingest | ||
GO111MODULE=on CGO_ENABLED=1 GOOS=linux go build -ldflags="-s -w" -i -v ./cmd/server | ||
|
||
# Install binaries into Go path | ||
|
@@ -104,4 +98,4 @@ install: | |
|
||
clean: | ||
@echo "clean project..." | ||
#rm -f $(PROJECT_NAME) | ||
#rm -f $(PROJECT_NAME) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (for some reason this was missing a newline) |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't test these changes to
Dockerfile