Skip to content

Commit d323699

Browse files
authored
Add missing osaka-time lcli param (#7183)
Getting this when running lcli with `--osaka-time`: ``` error: unexpected argument '--osaka-time' found tip: a similar argument exists: '--shanghai-time' ``` This PR adds the missing `--osaka-time` option to `lcli`.
1 parent ca23765 commit d323699

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lcli/src/main.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,15 @@ fn main() {
553553
until Prague is triggered on mainnet.")
554554
.display_order(0)
555555
)
556+
.arg(
557+
Arg::new("osaka-time")
558+
.long("osaka-time")
559+
.value_name("UNIX_TIMESTAMP")
560+
.action(ArgAction::Set)
561+
.help("The payload timestamp that enables Osaka. No default is provided \
562+
until Osaka is triggered on mainnet.")
563+
.display_order(0)
564+
)
556565
)
557566
.subcommand(
558567
Command::new("http-sync")

0 commit comments

Comments
 (0)