-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- lib: rename `UseTor` to `TorMode` - lib: allow custom user agent, time and blockheight during handshakes - lib: change the `Info::Done` variant to enable error outcomes - lib: bugfix, send the `Info::Done` event if Tor required but not found - bin: replace the `no_tor` switch with the `tor_mode` enum - bin: introduce the `-v`/`--verbose` switch to enable debug output
- Loading branch information
1 parent
6a31444
commit e77fe4d
Showing
10 changed files
with
171 additions
and
87 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pushtx-cli" | ||
version = "0.2.4" | ||
version = "0.3.0" | ||
edition = "2021" | ||
authors = ["Alfred Hodler <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -18,5 +18,5 @@ anyhow = "1.0.86" | |
clap = { version = "4.5.4", features = ["derive"] } | ||
env_logger = { version = "0.11.3", default-features = false } | ||
log = "0.4.20" | ||
pushtx = { version = "0.2.4", path = "../pushtx" } | ||
pushtx = { version = "0.3.0", path = "../pushtx" } | ||
thiserror = "1.0.61" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pushtx" | ||
version = "0.2.4" | ||
version = "0.3.0" | ||
edition = "2021" | ||
authors = ["Alfred Hodler <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.