Crash fixes, reorg handling, and sync performance improvements
Some checks failed
Rust / Build on macOS-latest (push) Has been cancelled
Rust / Build on ubuntu-16.04 (push) Has been cancelled
Rust / Build on windows-latest (push) Has been cancelled
Rust / Linux ARMv7 (push) Has been cancelled
Rust / Linux ARM64 (push) Has been cancelled
Rust / Build on ubuntu-latest (push) Has been cancelled
Some checks failed
Rust / Build on macOS-latest (push) Has been cancelled
Rust / Build on ubuntu-16.04 (push) Has been cancelled
Rust / Build on windows-latest (push) Has been cancelled
Rust / Linux ARMv7 (push) Has been cancelled
Rust / Linux ARM64 (push) Has been cancelled
Rust / Build on ubuntu-latest (push) Has been cancelled
- Fix FFI panics with catch_unwind and safe CString construction - Handle poisoned mutex/RwLock after prior panics instead of crashing - Fix empty block list panics in clear_blocks and invalidate_block - Reuse Tokio runtime across block fetch batches to reduce overhead - Add fetch_blocks_with_runtime for caller-managed runtime lifecycle - Update branding, dependencies, and checkpoints for DragonX
This commit is contained in:
46
Makefile
46
Makefile
@@ -1,23 +1,23 @@
|
||||
.PHONY: format help
|
||||
# Help system from https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
|
||||
.DEFAULT_GOAL := help
|
||||
# Copyright (c) 2019-2024 Jahway603 & The Hush Developers
|
||||
# Released under the GPLv3
|
||||
#
|
||||
# DragonX Silentdragonlite-cli Makefile
|
||||
PROJECT_NAME := "silentdragonxlite-cli"
|
||||
|
||||
help:
|
||||
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
|
||||
|
||||
about: ## Display release info
|
||||
printf "DragonX Silentdragonlite-cli Makefile by jahway603\n"
|
||||
|
||||
build: ## Build the release
|
||||
./util/build.sh
|
||||
cp `pwd`/target/release/$(PROJECT_NAME) .
|
||||
printf "DragonX silentdragonxlite-cli is ready for you\n"
|
||||
|
||||
clean: ## Clean the repo
|
||||
cargo clean
|
||||
rm $(PROJECT_NAME)
|
||||
.PHONY: format help
|
||||
# Help system from https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
|
||||
.DEFAULT_GOAL := help
|
||||
# Copyright (c) 2019-2024 Jahway603 & The Hush Developers
|
||||
# Released under the GPLv3
|
||||
#
|
||||
# DragonX Silentdragonlite-cli Makefile
|
||||
PROJECT_NAME := "silentdragonxlite-cli"
|
||||
|
||||
help:
|
||||
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
|
||||
|
||||
about: ## Display release info
|
||||
printf "DragonX Silentdragonlite-cli Makefile by jahway603\n"
|
||||
|
||||
build: ## Build the release
|
||||
./util/build.sh
|
||||
cp `pwd`/target/release/$(PROJECT_NAME) .
|
||||
printf "DragonX silentdragonxlite-cli is ready for you\n"
|
||||
|
||||
clean: ## Clean the repo
|
||||
cargo clean
|
||||
rm $(PROJECT_NAME)
|
||||
|
||||
Reference in New Issue
Block a user