Skip to content

Commit

Permalink
Fix node shell (ARPA-Network#104)
Browse files Browse the repository at this point in the history
* add retry of coordinator.publish()

* fix signer address

* bump version
  • Loading branch information
kafeikui authored Jun 17, 2024
1 parent b36d996 commit 025adcd
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.arpanetwork.io/"
Expand Down Expand Up @@ -49,13 +49,13 @@ debug-assertions = true
debug = true

[workspace.dependencies]
arpa-log = { version = "0.2.1", path = "crates/log" }
arpa-core = { version = "0.2.1", path = "crates/core" }
arpa-dal = { version = "0.2.1", path = "crates/dal" }
arpa-sqlite-db = { version = "0.2.1", path = "crates/dal/sqlite" }
arpa-contract-client = { version = "0.2.1", path = "crates/contract-client" }
dkg-core = { version = "0.2.1", path = "crates/dkg-core" }
threshold-bls = { version = "0.2.1", path = "crates/threshold-bls", default-features = false, features = [
arpa-log = { version = "0.2.2", path = "crates/log" }
arpa-core = { version = "0.2.2", path = "crates/core" }
arpa-dal = { version = "0.2.2", path = "crates/dal" }
arpa-sqlite-db = { version = "0.2.2", path = "crates/dal/sqlite" }
arpa-contract-client = { version = "0.2.2", path = "crates/contract-client" }
dkg-core = { version = "0.2.2", path = "crates/dkg-core" }
threshold-bls = { version = "0.2.2", path = "crates/threshold-bls", default-features = false, features = [
"bn254",
] }
ethers = "2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/contract-client/src/ethers/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ impl CoordinatorTransactions for CoordinatorClient {
coordinator_contract.client_ref(),
call,
self.contract_transaction_retry_descriptor,
false,
true,
)
.await
}
Expand Down
2 changes: 1 addition & 1 deletion crates/contract-client/src/ethers/node_registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl NodeRegistryClient {

let digest_hash = avs_directory_contract
.calculate_operator_avs_registration_digest_hash(
self.client.inner().address(),
signer.address(),
service_manager_address,
salt,
expiry,
Expand Down

0 comments on commit 025adcd

Please sign in to comment.