Skip to content

Commit 220e9fa

Browse files
authored
Merge pull request #817 from symbol/dev
Dev->Main
2 parents 0c9d676 + c448314 commit 220e9fa

File tree

5 files changed

+1331
-9063
lines changed

5 files changed

+1331
-9063
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The 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
1010
Package | 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

e2e/infrastructure/IntegrationTestHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

gulpfile.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)