Skip to content

Commit b259075

Browse files
grarcomergify[bot]
authored andcommitted
Hides test cli arguments
(cherry picked from commit 2c82472)
1 parent c4377b9 commit b259075

File tree

1 file changed

+36
-16
lines changed

1 file changed

+36
-16
lines changed

crates/apps_lib/src/cli.rs

Lines changed: 36 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5023,10 +5023,15 @@ pub mod args {
50235023
.def()
50245024
.help(wrap!("The amount to transfer in decimal.")),
50255025
)
5026-
.arg(__TEST_FRONTEND_SUS_FEE.def().help(wrap!(
5027-
"The optional address of the frontend provider that will \
5028-
take the masp sustainability fee."
5029-
)))
5026+
.arg(
5027+
__TEST_FRONTEND_SUS_FEE
5028+
.def()
5029+
.help(wrap!(
5030+
"The optional address of the frontend provider \
5031+
that will take the masp sustainability fee."
5032+
))
5033+
.hide(true),
5034+
)
50305035
}
50315036
}
50325037

@@ -5139,10 +5144,15 @@ pub mod args {
51395144
payment. When not provided the source spending key will \
51405145
be used."
51415146
)))
5142-
.arg(__TEST_FRONTEND_SUS_FEE.def().help(wrap!(
5143-
"The optional address of the frontend provider that will \
5144-
take the masp sustainability fee."
5145-
)))
5147+
.arg(
5148+
__TEST_FRONTEND_SUS_FEE
5149+
.def()
5150+
.help(wrap!(
5151+
"The optional address of the frontend provider \
5152+
that will take the masp sustainability fee."
5153+
))
5154+
.hide(true),
5155+
)
51465156
}
51475157
}
51485158

@@ -5277,10 +5287,15 @@ pub mod args {
52775287
payment (if this is a shielded action). When not \
52785288
provided the source spending key will be used."
52795289
)))
5280-
.arg(__TEST_FRONTEND_SUS_FEE.def().help(wrap!(
5281-
"The optional address of the frontend provider that will \
5282-
take the masp sustainability fee."
5283-
)))
5290+
.arg(
5291+
__TEST_FRONTEND_SUS_FEE
5292+
.def()
5293+
.help(wrap!(
5294+
"The optional address of the frontend provider \
5295+
that will take the masp sustainability fee."
5296+
))
5297+
.hide(true),
5298+
)
52845299
}
52855300
}
52865301

@@ -7388,10 +7403,15 @@ pub mod args {
73887403
.arg(CHANNEL_ID.def().help(wrap!(
73897404
"The channel ID via which the token is received."
73907405
)))
7391-
.arg(__TEST_FRONTEND_SUS_FEE_IBC.def().help(wrap!(
7392-
"The optional address of the frontend provider that will \
7393-
take the masp sustainability fee."
7394-
)))
7406+
.arg(
7407+
__TEST_FRONTEND_SUS_FEE_IBC
7408+
.def()
7409+
.help(wrap!(
7410+
"The optional address of the frontend provider \
7411+
that will take the masp sustainability fee."
7412+
))
7413+
.hide(true),
7414+
)
73957415
}
73967416
}
73977417

0 commit comments

Comments
 (0)