Skip to content

Commit d9d42b6

Browse files
fix(utxo-bin): add missing command address fromDescriptor
Issue: BTC-1472
1 parent cf8ea6b commit d9d42b6

File tree

1 file changed

+2
-2
lines changed
  • modules/utxo-bin/src/commands/cmdAddress

1 file changed

+2
-2
lines changed

modules/utxo-bin/src/commands/cmdAddress/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { CommandModule } from 'yargs';
22

3-
import { cmdGenerateFixedScript } from './cmdGenerate';
3+
import { cmdFromDescriptor, cmdGenerateFixedScript } from './cmdGenerate';
44
import { cmdParse } from './cmdParse';
55

66
export const cmdAddress: CommandModule<unknown, unknown> = {
77
command: 'address <command>',
88
describe: 'address commands',
99
builder(b) {
10-
return b.strict().command(cmdGenerateFixedScript).command(cmdParse).demandCommand();
10+
return b.strict().command(cmdGenerateFixedScript).command(cmdFromDescriptor).command(cmdParse).demandCommand();
1111
},
1212
handler() {
1313
// do nothing

0 commit comments

Comments
 (0)