Skip to content

Commit

Permalink
Test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Dec 12, 2022
1 parent 1370d89 commit c3bc03c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/script/interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <pubkey.h>
#include <script/script.h>
#include <uint256.h>
#include <util/check.h>

typedef std::vector<unsigned char> valtype;

Expand Down Expand Up @@ -400,6 +401,8 @@ static bool EvalChecksig(const valtype& sig, const valtype& pubkey, CScript::con
// Key path spending in Taproot has no script, so this is unreachable.
break;
}
STR_INTERNAL_BUG("");
NONFATAL_UNREACHABLE();
assert(false);
}

Expand Down

0 comments on commit c3bc03c

Please sign in to comment.