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.
44
55The changelog format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7- ## [ 1.0.2] - 19 -Oct-2021
7+ ## [ 1.0.2] - 25 -Oct-2021
88
99** Milestone** : Symbol Mainnet
1010Package | Version | Link
@@ -15,10 +15,11 @@ Client Library | v1.0.1 | [symbol-openapi-typescript-fetch-client](https://www.
1515
1616- feat: Multisig multilevel subscription in web listener.
1717- feat: Added Deployment data to ` ServerInfo ` .
18- - fix: Announce method missing observable map.
18+ - fix: Fixed observable pipe in ` TransactionService ` 's announce method.
1919- fix: Allowing plain base32 addresses in rest payloads. Both address formats are supported.
2020- 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.
2223
2324## [ 1.0.1] - 24-May-2021
2425
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export class IntegrationTestHelper {
5656 }
5757
5858 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 [ ] ;
6060 if ( ! accounts ) {
6161 throw new Error ( 'Nemesis accounts could not be loaded!' ) ;
6262 }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments