Skip to content

Commit

Permalink
updates for 3.4.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jcramer committed Apr 17, 2019
1 parent 069fda4 commit 39e928c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
9 changes: 7 additions & 2 deletions RELEASE-NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,10 @@ Electron Cash - SLP Token Edition

3.4.7 Updates & Features
-----
- Patch to disallow importing wallets from electrum seeds, only allow BIP-39 with valid checksum
- Various other minor patches
- New fancy DMG for MacOS
- New AppImage for linux installs
- Ported many bug fixes from mainline Electron Cash 4.0.1 (and latest code)
- Patched multi-sig wallet import vulnerability, now BIP-39 seeds are required to encourage use of path m/44'/245'/0' for SLP tokens
- Updated SLP feature set activation behavior in preparation for merge with mainline Electron Cash
- Fixed bugs associated with token tab context menu causing errors
- Fixed bugs associated with thread locking around SLP token data read/write activity
7 changes: 2 additions & 5 deletions lib/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from .util import format_satoshis_plain


DEFAULT_EXPLORER = "Blockchair.com"
DEFAULT_EXPLORER = "Bitcoin.com"

mainnet_block_explorers = {
'Bitcoin.com': ('https://explorer.bitcoin.com/bch',
Expand All @@ -48,10 +48,7 @@
{'tx': '', 'addr': ''}),
'ViaBTC.com': ('https://www.viabtc.com/bch',
Address.FMT_CASHADDR,
{'tx': 'tx', 'addr': 'address'}),
'Tokengraph.network': ('https://tokengraph.network',
Address.FMT_CASHADDR,
{'tx': 'tx', 'addr': 'address'}),
{'tx': 'tx', 'addr': 'address'})
}

DEFAULT_EXPLORER_TESTNET = 'Bitcoin.com'
Expand Down

0 comments on commit 39e928c

Please sign in to comment.