Thorsten Hempel
b990ff78a5
appimage: update libc6-dev package ( #7299 )
4 years ago
bitromortac
3c02f6b922
swaps: fix satoshi conversion bug
4 years ago
SomberNight
cad4e77853
fix prev
4 years ago
SomberNight
b2169b745e
wallet: (fix) "batch_rbf" must not mutate LN funding txs
The "Batch RBF transactions" feature mutates existing "local" and "unconfirmed RBF"
transactions when creating new transactions: it simply adds the new outputs to the
existing txs (and updates the change).
The "RBF" flag is only enforced for unconfirmed txs, not for local txs.
The bug was that given a local LN funding tx, when creating a new channel
with "batch_rbf" enabled, we would modify the existing local tx, and
broadcast that.
related: #7298
4 years ago
bitromortac
2749ea4d49
lnrouter: add inflight htlcs to liquidity hints
4 years ago
bitromortac
591a36fb3b
lnworker: async gen create_routes_for_payments
4 years ago
wakiyamap
9f4d7ec6d1
Add net.BOLT11_HRP
4 years ago
SomberNight
9c1a51547a
kivy: (trivial) clean-up imports in screens.py
4 years ago
SomberNight
3b0209a3a5
follow-up prev
4 years ago
ghost43
dd84acc109
Merge pull request #7234 from bitromortac/2104-invoice-amt-7184
invoice: fail gracefully with large amount
4 years ago
bitromortac
853e912885
invoice: fail gracefully with large amount
4 years ago
bitromortac
6ce96306ca
util: check bip21 url for amount
4 years ago
wakiyamap
639cd94dcb
add signet support
4 years ago
SomberNight
c3ccfd7d19
android build: pin hashes of p4a recipes
4 years ago
SomberNight
5dcafaf082
mac build: link to issue in README
4 years ago
Andrew Kozlik
2de82a2fd6
Add SLIP-0039 unit tests.
4 years ago
Andrew Kozlik
0dce13a1dd
Implement SLIP-0039 wallet recovery.
4 years ago
Andrew Kozlik
19d04546df
Replace from_bip39_seed() with from_bip43_rootseed().
4 years ago
Andrew Kozlik
be7a332624
Add SLIP-0039 wordlist.
4 years ago
SomberNight
ef3293ab6a
kivy: relocate atlas so it can be made a submodule later
4 years ago
jpph
0a56404f28
bip39 auto import, add coolwallet S weird derivation path ( #7261 )
auto import, add coolwallet S weird derivation path #7259
Would be nice to auto detect also coolwallet S derivation path.
In file bip39_wallet_formats.json :
{ "description": "coolwallet S derivation path using bip44 but with segwit script format",
"derivation_path": "m/44'/0'/0'",
"script_type": "p2wpkh-p2sh",
"iterate_accounts": true
}
see https://help.coolwallet.io/article/160-recover-btc-using-coolwallet-s-seed-without-the-wallet for their recovery instruction
4 years ago
ghost43
1e34b96725
Merge pull request #7258 from bitromortac/2104-openchannel-7219
kivy: improve openchannel dialog for trampoline
4 years ago
bitromortac
97b31880d7
kivy: improve openchannel dialog for trampoline
4 years ago
ThomasV
7789497140
release script: add username to signature file, upload files into airlock.
4 years ago
ThomasV
2b05615995
Do not perform webserver update from release script.
(see publish.sh and deploy.sh in the electrum-web repo)
4 years ago
SomberNight
1dfa81e7b6
contrib: fix find_restricted_dependencies for deps with version range
New release of pyinstaller (4.3) broke the script (which is used by freeze_packages.sh).
-----
Compare:
$ wget https://pypi.org/pypi/pyinstaller/4.3/json
$ cat json | jq ".info.requires_dist"
[
"setuptools",
"altgraph",
"pyinstaller-hooks-contrib (>=2020.6)",
"importlib-metadata ; python_version < \"3.8\"",
"macholib (>=1.8) ; sys_platform == \"darwin\"",
"pefile (>=2017.8.1) ; sys_platform == \"win32\"",
"pywin32-ctypes (>=0.2.0) ; sys_platform == \"win32\"",
"tinyaes (>=1.0.0) ; extra == 'encryption'",
"pytest (>=2.7.3) ; extra == 'hook_testing'",
"execnet (>=1.5.0) ; extra == 'hook_testing'",
"psutil ; extra == 'hook_testing'"
]
$ wget https://pypi.org/pypi/pyinstaller/4.2/json | jq .
$ cat json | jq ".info.requires_dist"
null
$ wget https://pypi.org/pypi/qrcode/6.1/json
$ cat json | jq ".info.requires_dist"
[
"six",
"colorama ; platform_system == \"Windows\"",
"tox ; extra == 'dev'",
"pytest ; extra == 'dev'",
"mock ; (python_version < \"3\") and extra == 'dev'",
"zest.releaser[recommended] ; extra == 'maintainer'",
"pillow ; extra == 'pil'",
"pytest ; extra == 'test'",
"pytest-cov ; extra == 'test'",
"mock ; (python_version < \"3\") and extra == 'test'"
]
4 years ago
ghost43
de716ab07c
Merge pull request #7247 from bitromortac/2104-fix-liquidity-hints
lnworker: fix path_finder access
4 years ago
SomberNight
8bba3b9ef5
network: also clear network.path_finder in stop_gossip
stop_gossip should undo start_gossip
related: #7242
4 years ago
ThomasV
04b1e8718a
tx dialog (Qt): if possible, save psbt and fully signed transaction under the same basename.
4 years ago
bitromortac
4cb0b99996
lnworker: fix path_finder access
4 years ago
ThomasV
4411652b1c
Merge pull request #7238 from SomberNight/202104_qt_send_max_tooltip
qt send tab: when clicking "Max", show tooltip explaining max amt
4 years ago
SomberNight
86ba37dc1c
qt send tab: when clicking "Max", show tooltip explaining max amt
Beginner users often ask why they cannot send their full balance.
Hence, this intends to reduce support load.
In terms of UI, maybe there is a better way to do this but this was
easy to do and still a good first step IMHO.
4 years ago
SomberNight
37bde9baf9
qt: cpfp: fix handling "no dynamic fee estimates"
fixes #7237
4 years ago
ghost43
ecb083b283
Merge pull request #7231 from bitromortac/2104-fix-swap-check
swaps: fix swap sanity check
4 years ago
bitromortac
b97e51dbd8
swaps: fix off-by-one sanity check
Tolerates discrepancies in the swap amount crosschecks. To ensure we
calculate the send/receive amounts correctly we apply a check, using
amount inversion. The inversion is not exact up to +-1 due to used
floor and ceil functions in the methods. They are not invertible,
which is why we relax the check to off-by-ones.
4 years ago
SomberNight
1436760d3d
qt coins tab: Ctrl+F now searches the whole prevout string
(not just the truncated string that is displayed in the list)
4 years ago
SomberNight
3b77340671
Qt MyTreeView: rm usages of Qt.UserRole, use explicit roles instead
This is a bit more verbose but it explicitly shows what data is being
used where.
Also rm implicitly setting editable_columns based on stretch_column.
4 years ago
SomberNight
720d60c391
(trivial) rm dead code
follow-up #7152
4 years ago
SomberNight
af44c846cc
tests: add test for payto command
4 years ago
ghost43
0f83270053
Merge pull request #7152 from bitromortac/2103-liquidity-hints
Liquidity hints for pathfinding
4 years ago
SomberNight
bb381a263a
android build: update p4a/buildozer to latest upstream
Rebased our branches on latest p4a develop HEAD and buildozer master HEAD.
Re `android.allow_backup = False` in buildozer.spec, now that this setting
has been exposed to buildozer.spec (see https://github.com/kivy/buildozer/pull/1206 ),
we could finally drop a commit from our branch that did the same:
7a7d415d90
Re commenting out `android.arch` in buildozer.spec, we are setting this
via the ENV VAR in make_apk.
4 years ago
ThomasV
8ce94248d4
kivy: update wizard message: pin->password
4 years ago
SomberNight
11bb39ee82
kivy: implement freezing channels
4 years ago
SomberNight
4e0a20ae46
gui messages: mv one more message to messages.py
4 years ago
SomberNight
0ab9687734
kivy: make ActionDropdown disappear when an action is selected
4 years ago
SomberNight
e15a11a437
kivy: use ActionDropdown in ChannelDetailsPopup
4 years ago
SomberNight
b8ec85d615
kivy tx dialog: abstract away ActionDropdown, mv into its own file
4 years ago
SomberNight
b27925c6c5
kivy tx dialog: dscancel btn text was too long
see first part of #6868
4 years ago
SomberNight
4f6c0c2c61
kivy bump fee dialog: handle no dynamic fee estimates
fix #7220
4 years ago
ThomasV
8f95dc2640
Merge pull request #7211 from SomberNight/202104_keep_early_logs
logging: don't lose log messages during early startup
4 years ago