Skip to content

Commit fda7705

Browse files
authored
Merge pull request bitcoin#122 from dgpv/patch-3
bip-taproot: use bytes() instead of b'' - avoid markdown issue
2 parents e174022 + 12d8d5b commit fda7705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bip-taproot.mediawiki

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def taproot_output_script(internal_pubkey, script_tree):
224224
- a list of two elements, each with the same structure as script_tree itself"""
225225
- None
226226
if script_tree is None:
227-
h = b''
227+
h = bytes()
228228
else:
229229
_, h = taproot_tree_helper(script_tree)
230230
output_pubkey, _ = taproot_tweak_pubkey(internal_pubkey, h)

0 commit comments

Comments
 (0)