Skip to content

Commit 2be3576

Browse files
Merge pull request #5158 from BitGo/BTC-1472.add-address-fromDescriptor
fix(utxo-bin): add missing command `address fromDescriptor`
2 parents e24ce72 + d9d42b6 commit 2be3576

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)