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.
address fromDescriptor
1 parent cf8ea6b commit d9d42b6Copy full SHA for d9d42b6
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