File tree Expand file tree Collapse file tree 5 files changed +1331
-9063
lines changed Expand file tree Collapse file tree 5 files changed +1331
-9063
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The changelog format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
7
- ## [ 1.0.2] - 19 -Oct-2021
7
+ ## [ 1.0.2] - 25 -Oct-2021
8
8
9
9
** Milestone** : Symbol Mainnet
10
10
Package | Version | Link
@@ -15,10 +15,11 @@ Client Library | v1.0.1 | [symbol-openapi-typescript-fetch-client](https://www.
15
15
16
16
- feat: Multisig multilevel subscription in web listener.
17
17
- feat: Added Deployment data to ` ServerInfo ` .
18
- - fix: Announce method missing observable map.
18
+ - fix: Fixed observable pipe in ` TransactionService ` 's announce method.
19
19
- fix: Allowing plain base32 addresses in rest payloads. Both address formats are supported.
20
20
- fix: Cosigning from transaction hash only.
21
- - fix: Transaction signWith method broken into smaller methods.
21
+ - fix: Transaction ` signWith ` method broken into smaller methods.
22
+ - fix: Removed unsued dependencies.
22
23
23
24
## [ 1.0.1] - 24-May-2021
24
25
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export class IntegrationTestHelper {
56
56
}
57
57
58
58
private toAccounts ( addresses : Addresses ) : { accounts : string [ ] ; apiUrl : string ; addresses : Addresses } {
59
- const accounts = addresses ?. mosaics ?. [ 0 ] . accounts . map ( ( n ) => n . privateKey ) ;
59
+ const accounts = addresses ?. mosaics ?. [ 0 ] . accounts . map ( ( n ) => n . privateKey ) . filter ( ( privateKey ) => privateKey ) as string [ ] ;
60
60
if ( ! accounts ) {
61
61
throw new Error ( 'Nemesis accounts could not be loaded!' ) ;
62
62
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments