We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e24ce72 + d9d42b6 commit 2be3576Copy full SHA for 2be3576
modules/utxo-bin/src/commands/cmdAddress/index.ts
@@ -1,13 +1,13 @@
1
import { CommandModule } from 'yargs';
2
3
-import { cmdGenerateFixedScript } from './cmdGenerate';
+import { cmdFromDescriptor, cmdGenerateFixedScript } from './cmdGenerate';
4
import { cmdParse } from './cmdParse';
5
6
export const cmdAddress: CommandModule<unknown, unknown> = {
7
command: 'address <command>',
8
describe: 'address commands',
9
builder(b) {
10
- return b.strict().command(cmdGenerateFixedScript).command(cmdParse).demandCommand();
+ return b.strict().command(cmdGenerateFixedScript).command(cmdFromDescriptor).command(cmdParse).demandCommand();
11
},
12
handler() {
13
// do nothing
0 commit comments