diff options
author | Mark "Murch" Erhardt <murch@murch.one> | 2024-04-23 13:38:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 13:38:13 -0400 |
commit | d06521f4329921ee33f2cb5267df30726d1d5692 (patch) | |
tree | 2d804f615323e9d50e6cd5f13f3309c1ad44c32d /bip-0119.mediawiki | |
parent | 43ce3a461dfb48e62ffa0cfc70f5f54d1eb5c577 (diff) | |
parent | 2f1e2bc4d8ea0da70b7e840875292b0a5df8228e (diff) |
Merge pull request #1484 from git-sgmoore/master-1
added colon at end of if statement - bip-0119.mediawiki
Diffstat (limited to 'bip-0119.mediawiki')
-rw-r--r-- | bip-0119.mediawiki | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bip-0119.mediawiki b/bip-0119.mediawiki index acbe97c..d661f4c 100644 --- a/bip-0119.mediawiki +++ b/bip-0119.mediawiki @@ -89,7 +89,7 @@ def execute_bip_119(self): self.context.precomputed_ctv_data = self.context.tx.get_default_check_template_precomputed_data() # If the hashes do not match, return error - if stack[-1] != self.context.tx.get_default_check_template_hash(self.context.nIn, self.context.precomputed_ctv_data) + if stack[-1] != self.context.tx.get_default_check_template_hash(self.context.nIn, self.context.precomputed_ctv_data): return self.errors_with(errors.script_err_template_mismatch) return self.return_as_nop() |