Skip to content

Commit 31f797b

Browse files
committed
change simpleWalletDTO location
1 parent 8be3796 commit 31f797b

File tree

2 files changed

+13
-24
lines changed

2 files changed

+13
-24
lines changed

src/infrastructure/model/simpleWalletDTO.ts renamed to src/infrastructure/wallet/simpleWalletDTO.ts

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,21 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
/**
17-
* Catapult REST Endpoints
18-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
19-
*
20-
* The version of the OpenAPI document: 0.7.21
21-
*
22-
*
23-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
24-
* https://openapi-generator.tech
25-
* Do not edit the class manually.
26-
*/
2716

2817
/**
2918
* Used to instantiate a SimpleWallet
3019
*/
3120
export interface ISimpleWalletDTO {
32-
name: string;
33-
network: number;
34-
address: {
35-
address: string
36-
networkType: number,
37-
};
38-
creationDate: string;
39-
schema: string;
40-
encryptedPrivateKey: {
41-
encryptedKey: string
42-
iv: string,
43-
};
21+
name: string;
22+
network: number;
23+
address: {
24+
address: string
25+
networkType: number,
26+
};
27+
creationDate: string;
28+
schema: string;
29+
encryptedPrivateKey: {
30+
encryptedKey: string
31+
iv: string,
32+
};
4433
}

src/model/wallet/SimpleWallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import {LocalDateTime} from 'js-joda';
1818
import {Crypto, KeyPair, SHA3Hasher} from '../../core/crypto';
1919
import {Convert as convert} from '../../core/format';
20-
import {ISimpleWalletDTO} from '../../infrastructure/model/simpleWalletDTO';
20+
import {ISimpleWalletDTO} from '../../infrastructure/wallet/simpleWalletDTO';
2121
import {Account} from '../account/Account';
2222
import {Address} from '../account/Address';
2323
import {NetworkType} from '../blockchain/NetworkType';

0 commit comments

Comments
 (0)