We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f162b81 commit 8c0fc76Copy full SHA for 8c0fc76
2 files changed
.github/workflows/rust.yml
@@ -18,7 +18,7 @@ concurrency:
18
env:
19
CARGO_TERM_COLOR: always
20
RUST_BACKTRACE: full
21
- MIN_LANDERCOVERAGE_PERCENTAGE: 18
+ MIN_LANDERCOVERAGE_PERCENTAGE: 19
22
RUSTC_WRAPPER: sccache
23
24
jobs:
rust/main/hyperlane-base/src/settings/parser/mod.rs
@@ -268,9 +268,9 @@ fn parse_chain(
268
let submitter = match submitter {
269
Some(submitter_type) => submitter_type,
270
None => match connection.protocol() {
271
- HyperlaneDomainProtocol::Ethereum | HyperlaneDomainProtocol::Radix => {
272
- SubmitterType::Lander
273
- }
+ HyperlaneDomainProtocol::Ethereum
+ | HyperlaneDomainProtocol::Radix
+ | HyperlaneDomainProtocol::Sealevel => SubmitterType::Lander,
274
_ => Default::default(),
275
},
276
};
0 commit comments