Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.9.2"
version = "0.9.3"
edition = "2021"
rust-version = "1.81"
authors = ["init4"]
Expand Down
2 changes: 1 addition & 1 deletion crates/constants/src/chains/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub const HOST_NAME: &str = "Test Host";
/// Test chain id for the host chain.
pub const HOST_CHAIN_ID: u64 = 1;
/// Test deployment height.
pub const DEPLOY_HEIGHT: u64 = 0;
pub const DEPLOY_HEIGHT: u64 = 100;
/// Test address for the host zenith.
pub const HOST_ZENITH: Address = Address::repeat_byte(0x11);
/// Test address for the host orders.
Expand Down
2 changes: 1 addition & 1 deletion crates/zenith/src/trevm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ mod test {
fn roundtrip<T: JournalDecode + JournalEncode + PartialEq>(expected: &T) {
let enc = JournalEncode::encoded(expected);
assert_eq!(enc.len(), expected.serialized_size(), "{}", core::any::type_name::<T>());
let dec = T::decode(&mut enc.as_slice()).expect("decoding failed");
let dec = T::decode(&mut enc.as_ref()).expect("decoding failed");
assert_eq!(&dec, expected);
}

Expand Down