Skip to content

Commit

Permalink
Improve syncing (#906)
Browse files Browse the repository at this point in the history
* Improve syncing speed and fix parsing in generateAddresses()

* Set outputs as spent if they're in confirmed messages

* Set spent status correctly

* Fix typo

* Fix clippy and resolve conflicts in bindings

* Pyton binding clippy
  • Loading branch information
Thoralf-M authored Mar 9, 2022
1 parent 213140a commit 392a021
Show file tree
Hide file tree
Showing 16 changed files with 430 additions and 314 deletions.
6 changes: 6 additions & 0 deletions .changes/syncing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"nodejs-binding": patch
---

Improve syncing speed and return possible syncing errors that got previously ignored.
Fix parsing in generateAddresses().
86 changes: 67 additions & 19 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ chrono = { version = "0.4.19", default-features = false, features = ["serde"] }
futures = { version = "0.3.17", default-features = false }
getset = { version = "0.1.1", default-features = false }
hex = { version = "0.4.3", default-features = false }
iota-client = { git = "https://github.com/iotaledger/iota.rs", rev = "981136e9118a092cd4de6735e616858140b33019", default-features = false, features = ["async", "mqtt"] }
iota-client = { git = "https://github.com/iotaledger/iota.rs", rev = "47e5f6684e2c59237c5fac88be85950a6e5eec4f", default-features = false, features = ["async", "mqtt", "tls"] }
log = { version = "0.4.14", default-features = false }
once_cell = { version = "1.8.0", default-features = false }
rand = { version = "0.8.4", default-features = false }
Expand Down
Loading

0 comments on commit 392a021

Please sign in to comment.