btcs

bitcoin script parser/evaluator/compiler/decompiler
git clone git://jb55.com/btcs
Log | Files | Refs | README | LICENSE

commit a379b0ac9cb275b38810f2c4c6848c9d62c645ce
parent 86883716a2d58f6c27dfa472efd095323c28d750
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 13 Jun 2019 08:15:58 -0700

decompiler: fix space issue

Diffstat:
Mscript.c | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/script.c b/script.c @@ -539,7 +539,7 @@ script_eval(const u8 *script, size_t script_size, struct stack *stack, // (in -- out) if (stack_size(stack) < 1) SCRIPTERR("INVALID_STACK_OPERATION"); - struct num *bn; + struct num *bn; enum sn_result res = sn_from_val(stack_top_val(stack, -1), &bn); @@ -762,9 +762,10 @@ void script_print(const u8 *script, size_t script_size, int abbrev_data) { if (is_push_data(opcode)) { if (abbrev_data) - printf("data(%d) ", len); + printf("data(%d)", len); else - hex_print(tmpbuf, len); + hex_print(tmpbuf, len); + printf(" "); } else printf("%s ", op_name(opcode));