Skip to content

Commit 8c0fc76

Browse files
authored
feat: Make Lander the default transaction submitter for Sealevel (#7171)
Co-authored-by: Danil Nemirovsky <4614623+ameten@users.noreply.github.com>
1 parent f162b81 commit 8c0fc76

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

  • .github/workflows
  • rust/main/hyperlane-base/src/settings/parser

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
env:
1919
CARGO_TERM_COLOR: always
2020
RUST_BACKTRACE: full
21-
MIN_LANDERCOVERAGE_PERCENTAGE: 18
21+
MIN_LANDERCOVERAGE_PERCENTAGE: 19
2222
RUSTC_WRAPPER: sccache
2323

2424
jobs:

rust/main/hyperlane-base/src/settings/parser/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,9 @@ fn parse_chain(
268268
let submitter = match submitter {
269269
Some(submitter_type) => submitter_type,
270270
None => match connection.protocol() {
271-
HyperlaneDomainProtocol::Ethereum | HyperlaneDomainProtocol::Radix => {
272-
SubmitterType::Lander
273-
}
271+
HyperlaneDomainProtocol::Ethereum
272+
| HyperlaneDomainProtocol::Radix
273+
| HyperlaneDomainProtocol::Sealevel => SubmitterType::Lander,
274274
_ => Default::default(),
275275
},
276276
};

0 commit comments

Comments
 (0)