|
3 | 3 | * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
4 | 4 | import { RawTransactionSerde, RpcClient, Transaction } from '@ironfish/sdk'
|
5 | 5 | import { Args, Flags, ux } from '@oclif/core'
|
6 |
| -import { IronfishCommand } from '../../command' |
7 |
| -import { RemoteFlags } from '../../flags' |
8 |
| -import { confirmOrQuit } from '../../ui' |
9 |
| -import { longPrompt } from '../../utils/input' |
10 |
| -import { renderRawTransactionDetails } from '../../utils/transaction' |
| 6 | +import { IronfishCommand } from '../../../command' |
| 7 | +import { RemoteFlags } from '../../../flags' |
| 8 | +import { confirmOrQuit } from '../../../ui' |
| 9 | +import { longPrompt } from '../../../utils/input' |
| 10 | +import { renderRawTransactionDetails } from '../../../utils/transaction' |
11 | 11 |
|
12 |
| -export class PostCommand extends IronfishCommand { |
| 12 | +export class TransactionsPostCommand extends IronfishCommand { |
13 | 13 | static summary = 'Post a raw transaction'
|
14 | 14 |
|
15 | 15 | static description = `Use this command to post a raw transaction.
|
@@ -45,7 +45,7 @@ export class PostCommand extends IronfishCommand {
|
45 | 45 | }
|
46 | 46 |
|
47 | 47 | async start(): Promise<void> {
|
48 |
| - const { flags, args } = await this.parse(PostCommand) |
| 48 | + const { flags, args } = await this.parse(TransactionsPostCommand) |
49 | 49 | let transaction = args.transaction
|
50 | 50 |
|
51 | 51 | if (!transaction) {
|
|
0 commit comments