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

Massive Spend Refactor #1989

Merged
merged 28 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
abc3df2
chore!: refactor spend struct
maqi Jun 29, 2024
75afa35
fix(spend): support multiple inputs with different keys
maqi Jul 9, 2024
b66d5a9
chore(kad): not enough close peers no longer result in error out
maqi Jul 10, 2024
cbde3dc
chore(spend_simulation): disable non-cashnote UTXO spend error out
maqi Jul 10, 2024
9942c03
chore(spend_simulation): disable failing query attempt assertion
maqi Jul 10, 2024
b187c8f
feat: add support for multi parents in CNR
grumbach Jul 11, 2024
8bb3a29
feat: remove middle spend from offline transfers
grumbach Jul 12, 2024
56a56cf
chore: rename token to amount
grumbach Jul 18, 2024
2c1ca64
refactor: entire transacting flow from CashNote to SignedSpend
grumbach Jul 19, 2024
9a54e12
fix: move tx verification to wallet sign
grumbach Jul 19, 2024
17d95d2
fix: re enable reissue bench
grumbach Jul 22, 2024
178b01c
fix: doctests
grumbach Jul 22, 2024
cabb759
fix: bench
grumbach Jul 22, 2024
e48af65
feat: improve network royalties identification for spends
grumbach Jul 22, 2024
dd91c1c
fix: spends fixes and security verifications
grumbach Jul 23, 2024
386d1c7
chore: improve code quality
grumbach Jul 23, 2024
9bd610a
fix: dag double spend test
grumbach Jul 23, 2024
d3c9e39
fix: serious error in spend dag double spend branching
grumbach Jul 23, 2024
fb33e07
fix: dag crawling invalid source check
grumbach Jul 23, 2024
fbc6613
fix: re comment uncommented block
grumbach Jul 23, 2024
dbe8822
chore: update docs for CashNote and spends
grumbach Jul 24, 2024
0f92260
feat: fixes and tests for unsigned tx
grumbach Jul 25, 2024
f574fb5
chore: disable flawed tests sending out invalid 0 tx
grumbach Jul 25, 2024
c2b3bb1
fix: allow time for double spend to spread in spend test
grumbach Jul 29, 2024
9fe6f44
chore: adapt after rebase
grumbach Jul 29, 2024
8bcab6d
test: bump sleep time to 20s
grumbach Jul 29, 2024
bab2054
fix: test issue
grumbach Jul 29, 2024
4643330
feat: remove output purpose
grumbach Aug 1, 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
24 changes: 24 additions & 0 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,30 @@ jobs:
SN_LOG: "all"
timeout-minutes: 5

- name: Move faucet log to the working folder
run: |
echo "SAFE_DATA_PATH has: "
ls -l $SAFE_DATA_PATH
echo "test_faucet foder has: "
ls -l $SAFE_DATA_PATH/test_faucet
echo "logs folder has: "
ls -l $SAFE_DATA_PATH/test_faucet/logs
mv $SAFE_DATA_PATH/test_faucet/logs/faucet.log ./faucet_log.log
env:
SN_LOG: "all"
SAFE_DATA_PATH: /home/runner/.local/share/safe
continue-on-error: true
if: always()
timeout-minutes: 1

- name: Upload faucet log
uses: actions/upload-artifact@main
with:
name: faucet_test_first_faucet_log
path: faucet_log.log
continue-on-error: true
if: always()

- name: Create and fund a wallet second time
run: |
ls -l /home/runner/.local/share
Expand Down
Loading
Loading