Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
602d79e
Update rust edition to 2021 (#749)
ardocrat May 14, 2026
129ad2f
Save last scanned block info for wallet scanning (#748)
ardocrat Jun 2, 2026
9570ed4
Bump openssl from 0.10.68 to 0.10.80 (#752)
dependabot[bot] Jun 4, 2026
06ab92a
Update lmdb (#755)
ardocrat Jun 9, 2026
ca5686a
Node submodules (#758)
ardocrat Jun 20, 2026
411bcff
Integrated Tor arti Client (#750)
ardocrat Jun 21, 2026
4587eb9
Global Tor client state (#762)
ardocrat Jun 22, 2026
f92a2d6
slatepack: return concrete error on sync workflow instead of none, op…
ardocrat Jun 22, 2026
3f89cbc
api: output slatepack file after tor finalization for invoice, update…
ardocrat Jun 23, 2026
91da4e7
Merge branch 'master' into staging_master
ardocrat Jun 23, 2026
86bae1c
build: update cargo wallet version
ardocrat Jun 23, 2026
1806098
tor: inverse check skip send to send tor
ardocrat Jun 23, 2026
1825e66
fix: lock on process invoice while updating slate state
ardocrat Jun 23, 2026
2292cb3
api: log errors on update tx slate state and slatepack file output af…
ardocrat Jun 23, 2026
5cc54f4
Merge pull request #764 from ardocrat/staging_master
wiesche89 Jun 23, 2026
a1d5287
Merge branch 'staging' into pay_tor_result
ardocrat Jun 23, 2026
6119093
tx: update slate state after tor sync flow at command
ardocrat Jun 23, 2026
547675d
Merge pull request #763 from ardocrat/pay_tor_result
wiesche89 Jun 23, 2026
876ee1c
Connection timeout (#765)
ardocrat Jul 5, 2026
e9e27f4
Update deps (#768)
ardocrat Jul 16, 2026
7fb4764
Bump lodash from 4.17.21 to 4.18.1 (#774)
wiesche89 Jul 24, 2026
d2fe2b9
Global config instance (#769)
ardocrat Jul 24, 2026
a51abac
Add embedded node mode
wiesche89 Jul 26, 2026
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
13 changes: 10 additions & 3 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
name: Linux Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build
run: cargo build --release
- name: Archive
Expand All @@ -32,7 +35,9 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build
run: cargo build --release
- name: Archive
Expand All @@ -53,7 +58,9 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build
run: cargo build --release
- name: Archive
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ jobs:
matrix:
job_args: [api, config, controller, impls, libwallet, .]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Test ${{ matrix.job_args }}
working-directory: ${{ matrix.job_args }}
run: cargo test --release
Expand All @@ -19,7 +21,9 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: recursive
- name: Tests
run: cargo test --release --all

Expand All @@ -28,6 +32,8 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: recursive
- name: Tests
run: cargo test --release --all
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "grin"]
path = grin
branch = staging
url = https://github.com/mimblewimble/grin
Empty file modified .hooks/pre-commit
100644 → 100755
Empty file.
Loading