Skip to content

Commit

Permalink
[DDW-483] Bumps cardano-wallet version
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolaglumac committed Nov 19, 2020
1 parent 750042c commit 14e4ea4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,7 @@ Changelog

### Chores

- Updated `cardano-wallet` to version `2020-11-17` ([PR 2246](https://github.com/input-output-hk/daedalus/pull/2246))
- Implemented a tool for quickly copying css properties on theme files ([PR 2196](https://github.com/input-output-hk/daedalus/pull/2196))
- Hid hardware wallet restoration support ([PR 2237](https://github.com/input-output-hk/daedalus/pull/2237))

Expand Down
6 changes: 3 additions & 3 deletions nix/sources.json
Expand Up @@ -29,10 +29,10 @@
"homepage": null,
"owner": "input-output-hk",
"repo": "cardano-wallet",
"rev": "77e04fc0f0c226f27ea2e293666bb8311ba0daa1",
"sha256": "0kc1ddidp1vip8rfnm7vp5avx46xr9nvyzn7q9r3yn50ylhx0i0j",
"rev": "7767f33b7fde5cadf35e7974c531a49cd2680aa5",
"sha256": "1y4sfykqkdijv2rx4758nc1b2f262cn89qfsv48xrv4irwi7x5mr",
"type": "tarball",
"url": "https://github.com/input-output-hk/cardano-wallet/archive/77e04fc0f0c226f27ea2e293666bb8311ba0daa1.tar.gz",
"url": "https://github.com/input-output-hk/cardano-wallet/archive/7767f33b7fde5cadf35e7974c531a49cd2680aa5.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz",
"version": "v2020-04-28"
},
Expand Down
9 changes: 7 additions & 2 deletions source/main/cardano/CardanoWalletLauncher.js
Expand Up @@ -131,10 +131,15 @@ export async function CardanoWalletLauncher(walletOpts: WalletOpts): Launcher {
logger.info('Launching Wallet with --testnet flag');
}
if (smashUrl) {
// TODO: Update SMASH URLs in iohk-nix: https://jira.iohk.io/browse/DDW-482
const smashUrlApiPath = '/api/v1/metadata';
const smashUrlBase = smashUrl.replace(smashUrlApiPath, '');
logger.info('Launching Wallet with --pool-metadata-fetching flag', {
poolMetadataSource: { smashUrl },
poolMetadataSource: { smashUrl, smashUrlBase },
});
merge(launcherConfig, {
poolMetadataSource: { smashUrl: smashUrlBase },
});
merge(launcherConfig, { poolMetadataSource: { smashUrl } });
}
merge(launcherConfig, { nodeConfig, tlsConfiguration });
break;
Expand Down

0 comments on commit 14e4ea4

Please sign in to comment.