Skip to content

Commit

Permalink
Merge pull request #817 from symbol/dev
Browse files Browse the repository at this point in the history
Dev->Main
  • Loading branch information
fboucquez committed Oct 25, 2021
2 parents 0c9d676 + c448314 commit 220e9fa
Show file tree
Hide file tree
Showing 5 changed files with 1,331 additions and 9,063 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [1.0.2] - 19-Oct-2021
## [1.0.2] - 25-Oct-2021

**Milestone**: Symbol Mainnet
Package | Version | Link
Expand All @@ -15,10 +15,11 @@ Client Library | v1.0.1 | [symbol-openapi-typescript-fetch-client](https://www.

- feat: Multisig multilevel subscription in web listener.
- feat: Added Deployment data to `ServerInfo`.
- fix: Announce method missing observable map.
- fix: Fixed observable pipe in `TransactionService`'s announce method.
- fix: Allowing plain base32 addresses in rest payloads. Both address formats are supported.
- fix: Cosigning from transaction hash only.
- fix: Transaction signWith method broken into smaller methods.
- fix: Transaction `signWith` method broken into smaller methods.
- fix: Removed unsued dependencies.

## [1.0.1] - 24-May-2021

Expand Down
2 changes: 1 addition & 1 deletion e2e/infrastructure/IntegrationTestHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class IntegrationTestHelper {
}

private toAccounts(addresses: Addresses): { accounts: string[]; apiUrl: string; addresses: Addresses } {
const accounts = addresses?.mosaics?.[0].accounts.map((n) => n.privateKey);
const accounts = addresses?.mosaics?.[0].accounts.map((n) => n.privateKey).filter((privateKey) => privateKey) as string[];
if (!accounts) {
throw new Error('Nemesis accounts could not be loaded!');
}
Expand Down
8 changes: 0 additions & 8 deletions gulpfile.js

This file was deleted.

Loading

0 comments on commit 220e9fa

Please sign in to comment.