File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ import { NamespaceId } from '../model/namespace/NamespaceId';
3232import { NamespaceName } from '../model/namespace/NamespaceName' ;
3333import { AggregateTransaction } from '../model/transaction/AggregateTransaction' ;
3434import { Transaction } from '../model/transaction/Transaction' ;
35+ import { UInt64 } from '../model/UInt64' ;
3536import { AccountRepository } from './AccountRepository' ;
3637import { AccountInfoDTO ,
3738 AccountNamesDTO ,
@@ -45,7 +46,6 @@ import {Http} from './Http';
4546import { NetworkHttp } from './NetworkHttp' ;
4647import { QueryParams } from './QueryParams' ;
4748import { CreateTransactionFromDTO } from './transaction/CreateTransactionFromDTO' ;
48- import { UInt64 } from '../model/UInt64' ;
4949
5050/**
5151 * Account http repository.
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ import { WalletAlgorithm } from './WalletAlgorithm';
2323 */
2424export class EncryptedPrivateKey {
2525 /**
26- * @internal
2726 * @param encryptedKey
2827 * @param iv
2928 */
@@ -40,15 +39,14 @@ export class EncryptedPrivateKey {
4039 }
4140
4241 /**
43- * @internal
4442 * Decrypt an encrypted private key
4543 * @param password
4644 */
47- decrypt ( password : Password ) : string {
45+ public decrypt ( password : Password ) : string {
4846 const common = {
4947 password : password . value ,
5048 privateKey : '' ,
51- }
49+ } ;
5250 const wallet = {
5351 encrypted : this . encryptedKey ,
5452 iv : this . iv ,
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ import {Wallet} from './Wallet';
3030export class SimpleWallet extends Wallet {
3131
3232 /**
33- * @internal
3433 * @param name
3534 * @param network
3635 * @param address
You can’t perform that action at this time.
0 commit comments