Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Commit

Permalink
Fix BCH tx error + bump v1.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
veado committed Sep 18, 2022
1 parent b1e93d2 commit b5ac27e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 1.18.1 (2022-09-18)

## Fix

[BCH] Reintroduction of error `Expected property "1" of type BigInteger, got n` [#2394](https://github.com/thorchain/asgardex-electron/issues/2394)

## Add

# 1.18.0 (2022-08-29)

## Add
Expand Down
8 changes: 4 additions & 4 deletions craco.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ module.exports = {
// as described in https://github.com/bitcoinjs/bitcoinjs-lib/issues/959#issuecomment-351040758
// In our case (and to simplify things) we just disable ALL sources by setting `mangle` to `false
// Very similar to https://github.com/ObsidianLabs/Black-IDE/blob/52a09abc63b49c6407e49e3acc100653c5ee5ca0/config-overrides.js#L28-L40
webpackConfig.optimization.minimizer = webpackConfig.optimization.minimizer.map((minimizer) => {
if (minimizer instanceof TerserPlugin) {
minimizer.options.mangle = false
webpackConfig.optimization.minimizer = webpackConfig.optimization.minimizer.map((plugin) => {
if (plugin instanceof TerserPlugin) {
plugin.options.minimizer.options.mangle = false
}
return minimizer
return plugin
})

webpackConfig.resolve.fallback = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "asgardex",
"productName": "ASGARDEX",
"version": "1.18.0",
"version": "1.18.1",
"description": "WALLET AND EXCHANGE CLIENT FOR THORCHAIN",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit b5ac27e

Please sign in to comment.