From 689d133703d94183f441a0c0ac482a75d6a5a27a Mon Sep 17 00:00:00 2001 From: Nikola Glumac Date: Tue, 1 Jun 2021 22:29:18 +0200 Subject: [PATCH] [DDW-697] Fix get account public key endpoint params (#2580) --- CHANGELOG.md | 2 +- source/renderer/app/api/wallets/requests/getAccountPublicKey.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7efed0e2cc..2fb3bb0d47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,7 @@ Changelog - Included wallet names in dialog windows ([PR 2552](https://github.com/input-output-hk/daedalus/pull/2552)) - Updated `cardano-cli` version to always match the one from `cardano-wallet` ([PR 2561](https://github.com/input-output-hk/daedalus/pull/2561)) - Updated `react-polymorph` to version `1.0.0` ([PR 2549](https://github.com/input-output-hk/daedalus/pull/2549)) -- Updated `cardano-wallet` to version `2021-05-26` ([PR 2577](https://github.com/input-output-hk/daedalus/pull/2577)) +- Updated `cardano-wallet` to version `2021-05-26` ([PR 2577](https://github.com/input-output-hk/daedalus/pull/2577), [PR 2580](https://github.com/input-output-hk/daedalus/pull/2580)) - Updated `cardano-wallet` to version `2021-04-28` and `cardano-node` to version `1.26.2` ([PR 2551](https://github.com/input-output-hk/daedalus/pull/2551)) - Updated Catalyst voting registration to include rewards address instead of the payment one ([PR 2550](https://github.com/input-output-hk/daedalus/pull/2550)) - Moved currency related code into a dedicated store ([PR 2546](https://github.com/input-output-hk/daedalus/pull/2546)) diff --git a/source/renderer/app/api/wallets/requests/getAccountPublicKey.js b/source/renderer/app/api/wallets/requests/getAccountPublicKey.js index c8c967eb07..8d3dff9594 100644 --- a/source/renderer/app/api/wallets/requests/getAccountPublicKey.js +++ b/source/renderer/app/api/wallets/requests/getAccountPublicKey.js @@ -14,5 +14,5 @@ export const getAccountPublicKey = ( ...config, }, {}, - { passphrase, extended } + { passphrase, format: extended ? 'extended' : 'non_extended' } );