Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e0c69cc
travis: don't explicitly list what tests in tools/travis_build.sh
rustyrussell May 29, 2020
dcbc8e1
psbt: add a simple test case, by copying some of BIP 0174.
rustyrussell May 29, 2020
ecf297f
psbt: close some leaks.
rustyrussell May 29, 2020
0cb51e4
psbt: improve constness.
rustyrussell May 29, 2020
e46b41f
pullpush: add routines for safe marshal / unmarshal.
rustyrussell May 29, 2020
f96a946
psbt: use push functions for converting input to bytes.
rustyrussell May 29, 2020
52b4345
psbt: make output_to_bytes use push.
rustyrussell May 29, 2020
986db7e
wally_psbt: make wally_psbt_to_bytes use push itself.
rustyrussell May 29, 2020
29a741f
psbt: make psbt_input_get_length use the same code as psbt_input_to_b…
rustyrussell May 29, 2020
562e335
psbt: use pull_ functions to parse input section.
rustyrussell May 29, 2020
0874a86
psbt: use pull_ functions to parse output section.
rustyrussell May 29, 2020
9549acb
psbt: convert count_psbt_parts to use pull_ code.
rustyrussell May 29, 2020
b3af98a
psbt: convert wally_psbt_from_bytes to use pull_code.
rustyrussell May 29, 2020
cf033cd
psbt: add test for marshal/unmarshal limits.
rustyrussell May 29, 2020
8ea5c4c
psbt: add limit testing to unmarshalling as well.
rustyrussell May 29, 2020
1cccf05
psbt: add allocation tracking to tests.
rustyrussell May 29, 2020
39925bf
Check that pointers are non-null rather than length is non-zero
achow101 May 29, 2020
de70ade
Implement psbt global version type
achow101 May 29, 2020
4a09f02
Add wally_psbt_elements_input_init_alloc and elements fields setters
achow101 May 14, 2020
46c1b52
Add wally_psbt_elements_output_init_alloc and field setters
achow101 May 15, 2020
683fc70
Have the PSBT store it's magic to distinguish between psbt and pset
achow101 May 15, 2020
9e8a63f
Implement Elements psbt de/serialization as a proprietary type
achow101 May 30, 2020
aded945
pset: there are bools in the header file
niftynei Jun 23, 2020
c3c8a51
pset: pass in correct flags for elements tx parsing
niftynei Jun 23, 2020
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ src/test_bech32*
src/test_blech32*
src/test_clear*
src/test_tx*
src/test_psbt*
src/test_elements_tx*
src/test-suite.log
src/swig_java/swig_java_wrap.c
Expand Down
Loading