From a2be3fdb82e42d9ae3561d79f944b42c3ac991f0 Mon Sep 17 00:00:00 2001 From: ayushj05 Date: Wed, 1 May 2024 03:44:00 +0530 Subject: [PATCH] Added comment --- src/script.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/script.h b/src/script.h index a7399b4..36393ff 100644 --- a/src/script.h +++ b/src/script.h @@ -100,6 +100,7 @@ bool verify_sig (string pubKey, std::string signature) { return false; } +// Execute the operation in the script bool exec_op (string op, stack &stk, Json::Value &txn, int &bytes_to_push) { if (op == "OP_0") { stk.push("0");