Skip to content

Commit a496d16

Browse files
authored
chore: sets signet-sdk dependency back to latest (#101)
# chore: sets dependency back to latest - sets the `signet-sdk` dependency back to using latest by removing the previously-set rev hash.
1 parent 1fc9892 commit a496d16

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

Cargo.toml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ path = "bin/submit_transaction.rs"
2525
integration = []
2626

2727
[dependencies]
28-
init4-bin-base = { version = "0.4.1", features = ["perms"] }
28+
init4-bin-base = { version = "0.4.2", features = ["perms"] }
2929

30-
signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" }
31-
signet-sim = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" }
32-
signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" }
33-
signet-types = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" }
34-
signet-zenith = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" }
30+
signet-constants = { git = "https://github.com/init4tech/signet-sdk", branch = "main" }
31+
signet-sim = { git = "https://github.com/init4tech/signet-sdk", branch = "main" }
32+
signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk", branch = "main" }
33+
signet-types = { git = "https://github.com/init4tech/signet-sdk", branch = "main" }
34+
signet-zenith = { git = "https://github.com/init4tech/signet-sdk", branch = "main" }
3535

3636
trevm = { version = "0.23.4", features = ["concurrent-db", "test-utils"] }
3737

@@ -43,6 +43,7 @@ alloy = { version = "1.0.5", features = [
4343
"rlp",
4444
"node-bindings",
4545
"serde",
46+
"getrandom"
4647
] }
4748

4849
serde = { version = "1.0.197", features = ["derive"] }
@@ -57,3 +58,4 @@ tokio = { version = "1.36.0", features = ["full", "macros", "rt-multi-thread"] }
5758
oauth2 = "5"
5859
tokio-stream = "0.1.17"
5960
url = "2.5.4"
61+
tracing = "0.1.41"

src/quincey.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use alloy::signers::Signer;
22
use eyre::bail;
33
use init4_bin_base::{
4-
deps::tracing::{self, debug, info, instrument, trace},
4+
deps::tracing::{debug, info, instrument, trace},
55
perms::SharedToken,
66
utils::signer::LocalOrAws,
77
};

src/tasks/submit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use alloy::{
1616
use eyre::bail;
1717
use init4_bin_base::deps::{
1818
metrics::{counter, histogram},
19-
tracing::{self, Instrument, debug, debug_span, error, info, instrument, warn},
19+
tracing::{Instrument, debug, debug_span, error, info, instrument, warn},
2020
};
2121
use signet_sim::BuiltBlock;
2222
use signet_types::{SignRequest, SignResponse};
@@ -221,7 +221,7 @@ impl SubmitTask {
221221

222222
// Extract fills from the built block
223223
let fills = self.extract_fills(block);
224-
debug!(?fills, "extracted fills");
224+
debug!(fill_count = fills.len(), "extracted fills");
225225

226226
// Create a blob transaction with the blob header and signature values and return it
227227
let tx = self

0 commit comments

Comments
 (0)