Skip to content

Commit

Permalink
Fix: add missing required attribute to LOOKUP_TABLE_ADDRESS arg for g…
Browse files Browse the repository at this point in the history
…et subcommand (solana-labs#35200)

make LOOKUP_TABLE_ADDRESS arg required for address-lookup-table get subcommand
  • Loading branch information
f8122dac91 authored Feb 15, 2024
1 parent 1752202 commit 1c78ed6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cli/src/address_lookup_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ impl AddressLookupTableSubCommands for App<'_, '_> {
.index(1)
.value_name("LOOKUP_TABLE_ADDRESS")
.takes_value(true)
.required(true)
.help("Address of the lookup table to show"),
),
),
Expand Down

0 comments on commit 1c78ed6

Please sign in to comment.