Skip to content

Commit

Permalink
Version 0.2.3
Browse files Browse the repository at this point in the history
- bump version to 0.2.3
- update Cargo.lock
  • Loading branch information
alfred-hodler committed May 23, 2024
1 parent cb75581 commit dd9ddd0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
6 changes: 4 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pushtx-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pushtx-cli"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["Alfred Hodler <[email protected]>"]
license = "MIT"
Expand All @@ -18,5 +18,5 @@ anyhow = "1.0.86"
clap = { version = "4.5.4", features = ["derive"] }
env_logger = "0.11.3"
log = "0.4.20"
pushtx = { version = "0.2.2", path = "../pushtx" }
pushtx = { version = "0.2.3", path = "../pushtx" }
thiserror = "1.0.61"
2 changes: 1 addition & 1 deletion pushtx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pushtx"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["Alfred Hodler <[email protected]>"]
license = "MIT"
Expand Down
9 changes: 0 additions & 9 deletions pushtx/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,3 @@ pub fn broadcast(tx: Vec<Transaction>, opts: Opts) -> crossbeam_channel::Receive
broadcaster.run();
event_rx
}

/// Returns the number of seconds elapsed since the POSIX EPOCH.
fn posix_time() -> u64 {
use std::time;
time::SystemTime::now()
.duration_since(time::UNIX_EPOCH)
.unwrap()
.as_secs()
}

0 comments on commit dd9ddd0

Please sign in to comment.