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`.
This commit is contained in:
Jimmy Chen
2025-03-21 16:36:24 +11:00
committed by GitHub
parent ca237652f1
commit d323699fde

View File

@@ -553,6 +553,15 @@ fn main() {
until Prague is triggered on mainnet.")
.display_order(0)
)
.arg(
Arg::new("osaka-time")
.long("osaka-time")
.value_name("UNIX_TIMESTAMP")
.action(ArgAction::Set)
.help("The payload timestamp that enables Osaka. No default is provided \
until Osaka is triggered on mainnet.")
.display_order(0)
)
)
.subcommand(
Command::new("http-sync")