Skip to content

Commit d06521f

Browse files
authored
Merge pull request bitcoin#1484 from git-sgmoore/master-1
added colon at end of if statement - bip-0119.mediawiki
2 parents 43ce3a4 + 2f1e2bc commit d06521f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bip-0119.mediawiki

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def execute_bip_119(self):
8989
self.context.precomputed_ctv_data = self.context.tx.get_default_check_template_precomputed_data()
9090
9191
# If the hashes do not match, return error
92-
if stack[-1] != self.context.tx.get_default_check_template_hash(self.context.nIn, self.context.precomputed_ctv_data)
92+
if stack[-1] != self.context.tx.get_default_check_template_hash(self.context.nIn, self.context.precomputed_ctv_data):
9393
return self.errors_with(errors.script_err_template_mismatch)
9494
9595
return self.return_as_nop()

0 commit comments

Comments
 (0)