Skip to content

Commit 25af604

Browse files
committed
refactor: remove dep on alpen's strata-ol-chain-types-new
1 parent 33c96d0 commit 25af604

File tree

8 files changed

+21
-127
lines changed

8 files changed

+21
-127
lines changed

Cargo.lock

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ strata-codec-utils = { git = "https://github.com/alpenlabs/alpen.git", rev = "02
9191
strata-crypto = { git = "https://github.com/alpenlabs/alpen.git", rev = "02fe60d1b74470da3db67352b2f74625eb2e0ed1" }
9292
strata-db-store-sled = { git = "https://github.com/alpenlabs/alpen.git", rev = "02fe60d1b74470da3db67352b2f74625eb2e0ed1" }
9393
strata-identifiers = { git = "https://github.com/alpenlabs/alpen.git", rev = "02fe60d1b74470da3db67352b2f74625eb2e0ed1" }
94-
strata-ol-chain-types-new = { git = "https://github.com/alpenlabs/alpen.git", rev = "02fe60d1b74470da3db67352b2f74625eb2e0ed1" }
9594
strata-primitives = { git = "https://github.com/alpenlabs/alpen.git", rev = "02fe60d1b74470da3db67352b2f74625eb2e0ed1" }
9695
strata-state = { git = "https://github.com/alpenlabs/alpen.git", rev = "02fe60d1b74470da3db67352b2f74625eb2e0ed1" }
9796
strata-storage = { git = "https://github.com/alpenlabs/alpen.git", rev = "02fe60d1b74470da3db67352b2f74625eb2e0ed1" }

crates/subprotocols/checkpoint/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ strata-checkpoint-types-ssz.workspace = true
2323
strata-codec.workspace = true
2424
strata-crypto.workspace = true
2525
strata-identifiers.workspace = true
26-
strata-ol-chain-types-new.workspace = true
2726
strata-predicate = { workspace = true, features = ["all"] }
2827

2928
thiserror.workspace = true

crates/subprotocols/checkpoint/src/verification.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ use strata_asm_txs_checkpoint::EnvelopeCheckpoint;
66
use strata_bridge_types::{BRIDGE_GATEWAY_ACCT_SERIAL, OperatorSelection, WithdrawOutput};
77
use strata_checkpoint_types_ssz::{
88
CheckpointClaim, CheckpointSidecar, CheckpointTip, L2BlockRange, OLLog,
9-
compute_asm_manifests_hash_from_leaves,
9+
SimpleWithdrawalIntentLogData, compute_asm_manifests_hash_from_leaves,
1010
};
1111
use strata_codec::decode_buf_exact;
1212
use strata_crypto::hash;
13-
use strata_ol_chain_types_new::SimpleWithdrawalIntentLogData;
1413
use strata_predicate::PredicateTypeId;
1514

1615
use crate::{

guest-builder/sp1/guest-asm/Cargo.lock

Lines changed: 19 additions & 117 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ strata-identifiers.workspace = true
2727
strata-l1-envelope-fmt.workspace = true
2828
strata-l1-txfmt.workspace = true
2929
strata-merkle.workspace = true
30-
strata-ol-chain-types-new.workspace = true
3130
strata-predicate.workspace = true
3231
strata-state.workspace = true
3332
strata-tasks.workspace = true

tests/harness/bridge.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,12 @@ use strata_asm_txs_bridge_v1::{
4545
};
4646
use strata_bridge_types::BRIDGE_GATEWAY_ACCT_SERIAL;
4747
use strata_btc_types::BitcoinAmount;
48-
use strata_checkpoint_types_ssz::{CheckpointTip, OLLog};
48+
use strata_checkpoint_types_ssz::{CheckpointTip, OLLog, SimpleWithdrawalIntentLogData};
4949
use strata_codec::{encode_to_vec, VarVec};
5050
use strata_codec_utils::CodecSsz;
5151
use strata_crypto::{test_utils::schnorr::Musig2Tweak, EvenPublicKey, EvenSecretKey};
5252
use strata_identifiers::{OLBlockCommitment, OLBlockId};
5353
use strata_l1_txfmt::{ParseConfig, TagData};
54-
use strata_ol_chain_types_new::SimpleWithdrawalIntentLogData;
5554
use strata_test_utils_arb::ArbitraryGenerator;
5655
use strata_test_utils_btcio::{address::derive_musig2_p2tr_address, signing::sign_musig2_keypath};
5756
use strata_test_utils_checkpoint::CheckpointTestHarness;

tests/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ use strata_crypto as _;
2727
use strata_identifiers as _;
2828
use strata_l1_txfmt as _;
2929
use strata_merkle as _;
30-
use strata_ol_chain_types_new as _;
3130
use strata_predicate as _;
3231
use strata_state as _;
3332
use strata_tasks as _;

0 commit comments

Comments
 (0)