Skip to content

Commit

Permalink
Bump libwally-core to 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjors committed Jan 13, 2023
1 parent 94ba0f6 commit 2dcfa04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CLibWally/libwally-core
Submodule libwally-core updated 81 files
+44 −0 .github/workflows/wasm-package.yml
+2 −2 .github/workflows/wheels.yml
+5 −18 .gitlab-ci.yml
+0 −106 .travis.yml
+18 −0 CHANGES.md
+0 −1 MANIFEST.in
+7 −7 README.md
+11 −2 configure.ac
+6 −0 contrib/Dockerfile_bullseye
+0 −6 contrib/Dockerfile_buster
+7 −7 contrib/bullseye_deps.sh
+35 −14 docs/source/conf.py
+113 −6 include/wally.hpp
+10 −5 include/wally_address.h
+3 −4 include/wally_anti_exfil.h
+18 −20 include/wally_bip32.h
+3 −3 include/wally_bip38.h
+21 −3 include/wally_bip39.h
+47 −31 include/wally_crypto.h
+99 −25 include/wally_elements.h
+208 −7 include/wally_map.h
+17 −12 include/wally_psbt.h
+12 −0 include/wally_psbt_members.h
+11 −12 include/wally_script.h
+2 −2 include/wally_symmetric.h
+12 −30 include/wally_transaction.h
+1 −1 setup.py
+30 −11 src/Makefile.am
+87 −49 src/bip32.c
+34 −3 src/bip32_int.h
+11 −7 src/bip39.c
+3 −3 src/ccan/ccan/base64/base64.c
+4 −4 src/ccan/ccan/base64/base64.h
+52 −21 src/elements.c
+278 −20 src/map.c
+73 −27 src/psbt.c
+1 −1 src/pyexample/liquid/receive-send.py
+6 −7 src/script.c
+3 −0 src/scrypt.c
+27 −17 src/sign.c
+35 −14 src/swig_java/jni_extra.java_in
+1 −3 src/swig_java/src/com/blockstream/test/test_mnemonic.java
+204 −12 src/swig_java/swig.i
+2 −6 src/swig_python/contrib/mnemonic.py
+68 −17 src/swig_python/contrib/psbt.py
+319 −242 src/swig_python/python_extra.py_in
+55 −32 src/swig_python/swig.i
+75 −27 src/test/test_bip32.py
+4 −4 src/test/test_bip39.py
+10 −8 src/test/test_elements.py
+114 −25 src/test/test_map.py
+1 −1 src/test/test_psbt.py
+19 −5 src/test/test_scrypt.py
+9 −1 src/test/test_sign.py
+19 −1 src/test/util.py
+5 −5 src/transaction.c
+46 −4 src/transaction_int.h
+1 −0 src/wasm_package/.gitignore
+2 −0 src/wasm_package/.npmignore
+29 −0 src/wasm_package/README.md
+14 −0 src/wasm_package/build.sh
+199 −0 src/wasm_package/const.js
+302 −0 src/wasm_package/core.js
+4 −0 src/wasm_package/exports.js
+816 −0 src/wasm_package/functions.js
+766 −0 src/wasm_package/index.d.ts
+6 −0 src/wasm_package/index.js
+5 −0 src/wasm_package/package-lock.json
+18 −0 src/wasm_package/package.json
+134 −0 src/wasm_package/test.js
+36 −0 src/wasm_package/util.js
+2 −2 src/wrap_js/makewrappers/wrap.py
+1 −1 src/wrap_js/test/test_bip39.js
+11 −11 tools/build-aux/m4/ax_jni_include_dir.m4
+9 −3 tools/build_wasm.sh
+361 −33 tools/build_wrappers.py
+0 −19 tools/travis_build.sh
+0 −20 tools/travis_install.sh
+7 −0 tools/update_generated.sh
+18 −0 tools/update_wasm_package.sh
+317 −1 tools/wasm_exports.sh
2 changes: 1 addition & 1 deletion LibWally/PSBT.swift
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public struct PSBT : Equatable {
wally_tx.deallocate()
}
}
guard wally_psbt_extract(psbt, &output) == WALLY_OK else {
guard wally_psbt_extract(psbt, UInt32(0), &output) == WALLY_OK else {
return nil
}
precondition(output != nil)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Opinionated Swift wrapper around [LibWally](https://github.com/ElementsProject/libwally-core),
a collection of useful primitives for cryptocurrency wallets.

Supports a minimal set of features based on v0.8.6. See also [original docs](https://wally.readthedocs.io/en/release_0.8.6).
Supports a minimal set of features based on v0.8.7. See also [original docs](https://wally.readthedocs.io/en/release_0.8.7).

- [ ] Core Functions
- [x] base58 encode / decode
Expand Down

0 comments on commit 2dcfa04

Please sign in to comment.