Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
Hiding experimental account permissioning cli options (#1584)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassaldanha authored Jun 20, 2019
1 parent 12af8bd commit 28e1ce8
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -520,13 +520,15 @@ void setBannedNodeIds(final List<String> values) {
@Option(
names = {"--permissions-accounts-contract-address"},
description = "Address of the account permissioning smart contract",
arity = "1")
arity = "1",
hidden = true)
private final Address permissionsAccountsContractAddress = null;

@Option(
names = {"--permissions-accounts-contract-enabled"},
description =
"Enable account level permissions via smart contract (default: ${DEFAULT-VALUE})")
"Enable account level permissions via smart contract (default: ${DEFAULT-VALUE})",
hidden = true)
private final Boolean permissionsAccountsContractEnabled = false;

@Option(
Expand Down

0 comments on commit 28e1ce8

Please sign in to comment.