Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] add wallet creation date #942

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
6a4278e
display wallet birthday
Jan 29, 2024
2656f22
gui: support user/password RPC authentication
jp1ac4 Dec 21, 2023
0af905c
installer: support user/password RPC authentication
jp1ac4 Dec 22, 2023
8082a0b
gui: change radio border color
jp1ac4 Dec 28, 2023
ef9ab2a
bitcoind: error when trying to rescan past prune height
darosior Jan 3, 2024
5ecfab6
Bump MSRV for lianad to 1.63
darosior Jan 3, 2024
07beb76
Cargo.lock: update minor dependencies after MSRV bump
darosior Jan 3, 2024
fd4f1ce
Cargo: bump rusqlite to 0.30
darosior Jan 3, 2024
345137d
Cargo: bump jsonrpc version to 0.17
darosior Jan 3, 2024
a5265e6
Update rust-bitcoin and rust-miniscript
darosior Jan 3, 2024
cc07420
bitcoin: remove unused import
darosior Jan 4, 2024
3e7f6ab
Clippification
darosior Jan 4, 2024
4ac8df5
Change text when downloading Bitcoin to include version number
Jan 11, 2024
97a73d4
spend: use debug log level in coin selection
jp1ac4 Dec 19, 2023
9acc8cd
spend: return max possible change from coin selection
jp1ac4 Dec 29, 2023
b3c05e8
spend: add warning when adding change to fee
jp1ac4 Jan 4, 2024
b1e524f
commands: return warnings from spend creation
jp1ac4 Jan 4, 2024
e84a775
gui(daemon): fix rbfpsbt params for external daemon
jp1ac4 Jan 8, 2024
4af79ac
Make psbt action components handle the whole view
edouardparis Nov 20, 2023
35ca93b
encapsulate psbt actions in enum
edouardparis Nov 20, 2023
2a0c7e2
Add ui component toast from iced repo examples
edouardparis Nov 20, 2023
f5b7514
gui: merge psbt signatures instead of override full psbt
edouardparis Jan 10, 2024
f19dc46
ui: add processing hw notification to components
edouardparis Jan 12, 2024
d2de7a3
go directly to installer if datadir empty
Jan 14, 2024
2761d66
Add coldcard device to supported hws
edouardparis Dec 5, 2023
0e7a991
gui: use async-hwi:master
edouardparis Jan 16, 2024
e92cd59
fix clippy error
edouardparis Jan 16, 2024
8dbbb0f
fix clippy errors for rust 1.74
edouardparis Nov 20, 2023
147889b
ci gui: rust version 1.74 for linter, 1.65 for tests
edouardparis Jan 11, 2024
cf1aaa5
gui: remove base64 dep
edouardparis Jan 11, 2024
a4c8dc2
gui: bump liana:master and async-hwi:master
edouardparis Jan 22, 2024
16c3ed3
add timestamp field to getinfo
Jan 14, 2024
21877a7
gui: async-hwi 0.0.14
edouardparis Jan 23, 2024
7630310
Reset bitcoind default settings on network change
edouardparis Jan 23, 2024
1ac8ba5
commands: include missing amount in response
jp1ac4 Jan 17, 2024
41ab209
fix panic for managed bitcoind on network change
edouardparis Jan 23, 2024
0f0c5f6
descriptors: unit test we do take into account derivation steps befor…
darosior Jan 15, 2024
fe1519a
descriptors: add a method to get a PSBT's change outputs
darosior Jan 15, 2024
b47c8c2
Fix error message when importing desc for wrong network
edouardparis Jan 23, 2024
f1fcf26
gui: use descriptor method to detect psbt change outputs
edouardparis Jan 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
toolchain: 1.75.0
components: rustfmt, clippy
override: true
- name: rustfmt
Expand All @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
toolchain:
- 1.54
- 1.63
- nightly
os:
- ubuntu-latest
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: 1.75.0
components: rustfmt, clippy
override: true
- name: rustfmt
Expand All @@ -68,7 +68,7 @@ jobs:
strategy:
matrix:
toolchain:
- 1.65
- 1.65.0
- nightly
os:
- ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ query).

## Minimum Supported Rust Version

`lianad` should always compile and pass tests using **Rust 1.54**. The rationale behind this is
`lianad` should always compile and pass tests using **Rust 1.63**. The rationale behind this is
support something reasonable, and preferably supported by all of:
- [Guix](https://guix.gnu.org/)
- Popular distributions' packages (especially Debian which is the most conservative)
Expand Down
Loading
Loading