@@ -454,6 +454,7 @@ class wally_psbt(Structure):
454
454
('wally_psbt_from_base64_n' , c_int , [c_char_p , c_size_t , c_uint32 , POINTER (POINTER (wally_psbt ))]),
455
455
('wally_psbt_from_bytes' , c_int , [c_void_p , c_size_t , c_uint32 , POINTER (POINTER (wally_psbt ))]),
456
456
('wally_psbt_from_tx' , c_int , [POINTER (wally_tx ), c_uint32 , c_uint32 , POINTER (POINTER (wally_psbt ))]),
457
+ ('wally_psbt_get_global_genesis_blockhash' , c_int , [POINTER (wally_psbt ), c_void_p , c_size_t , c_size_t_p ]),
457
458
('wally_psbt_get_id' , c_int , [POINTER (wally_psbt ), c_uint32 , c_void_p , c_size_t ]),
458
459
('wally_psbt_get_input_bip32_key_from_alloc' , c_int , [POINTER (wally_psbt ), c_size_t , c_size_t , c_uint32 , POINTER (ext_key ), POINTER (POINTER (ext_key ))]),
459
460
('wally_psbt_get_input_scriptcode' , c_int , [POINTER (wally_psbt ), c_size_t , c_void_p , c_size_t , c_void_p , c_size_t , c_size_t_p ]),
@@ -464,6 +465,7 @@ class wally_psbt(Structure):
464
465
('wally_psbt_get_length' , c_int , [POINTER (wally_psbt ), c_uint32 , c_size_t_p ]),
465
466
('wally_psbt_get_locktime' , c_int , [POINTER (wally_psbt ), c_size_t_p ]),
466
467
('wally_psbt_get_tx_version' , c_int , [POINTER (wally_psbt ), c_size_t_p ]),
468
+ ('wally_psbt_has_global_genesis_blockhash' , c_int , [POINTER (wally_psbt ), c_size_t_p ]),
467
469
('wally_psbt_init_alloc' , c_int , [c_uint32 , c_size_t , c_size_t , c_size_t , c_uint32 , POINTER (POINTER (wally_psbt ))]),
468
470
('wally_psbt_input_add_signature' , c_int , [POINTER (wally_psbt_input ), c_void_p , c_size_t , c_void_p , c_size_t ]),
469
471
('wally_psbt_input_clear_amount_rangeproof' , c_int , [POINTER (wally_psbt_input )]),
@@ -617,6 +619,7 @@ class wally_psbt(Structure):
617
619
('wally_psbt_remove_input' , c_int , [POINTER (wally_psbt ), c_uint32 ]),
618
620
('wally_psbt_remove_output' , c_int , [POINTER (wally_psbt ), c_uint32 ]),
619
621
('wally_psbt_set_fallback_locktime' , c_int , [POINTER (wally_psbt ), c_uint32 ]),
622
+ ('wally_psbt_set_global_genesis_blockhash' , c_int , [POINTER (wally_psbt ), c_void_p , c_size_t ]),
620
623
('wally_psbt_set_global_scalars' , c_int , [POINTER (wally_psbt ), POINTER (wally_map )]),
621
624
('wally_psbt_set_global_tx' , c_int , [POINTER (wally_psbt ), POINTER (wally_tx )]),
622
625
('wally_psbt_set_pset_modifiable_flags' , c_int , [POINTER (wally_psbt ), c_uint32 ]),
0 commit comments