Skip to content

Commit

Permalink
chore(suite-data): update coinjoin middleware binaries
Browse files Browse the repository at this point in the history
from commit: trezor/coinjoin-backend@e7ea05c

changes:
- added /get-version endpoint
- fixed memory leak in /select-utxo-for-round
- fixed memory leak in /analyze-transaction
  • Loading branch information
szymonlesisz committed Nov 22, 2022
1 parent daaf4fb commit f4663cd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
Git LFS file not shown
4 changes: 2 additions & 2 deletions packages/suite-data/files/bin/coinjoin/linux-x64/WalletWasabi.WabiSabiClientLibrary
100644 → 100755
Git LFS file not shown
Binary file modified packages/suite-data/files/bin/coinjoin/mac-arm64/WalletWasabi.WabiSabiClientLibrary
100644 → 100755
Binary file not shown.
Binary file modified packages/suite-data/files/bin/coinjoin/mac-x64/WalletWasabi.WabiSabiClientLibrary
100644 → 100755
Binary file not shown.
8 changes: 5 additions & 3 deletions packages/suite-data/files/bin/coinjoin/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ BINARY_NAME=WalletWasabi.WabiSabiClientLibrary

7z x -y CoinjoinClientLibrary-binary.zip

# Re-naming direcotry from osx to mac to match the naming using in all the processes.
mv osx-arm64/ mac-arm64/
mv osx-x64/ mac-x64/
# Re-naming directory from osx to mac to match the naming using in all the processes.
cp -r osx-arm64/* mac-arm64/
rm -rf osx-arm64
cp -r osx-x64/* mac-x64/
rm -rf osx-x64

for p in linux-x64 linux-arm64 mac-x64 mac-arm64 win-x64; do
cp -r ${p}/publish/* ${p}/
Expand Down
Git LFS file not shown

0 comments on commit f4663cd

Please sign in to comment.