From 83c5a6f906da9e816a1f489cf7407d475373a72c Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 18 Feb 2016 02:25:37 -0800 Subject: [PATCH] minor. --- lib/bcoin/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bcoin/script.js b/lib/bcoin/script.js index 897f0d18..fd6f0708 100644 --- a/lib/bcoin/script.js +++ b/lib/bcoin/script.js @@ -1028,7 +1028,7 @@ script.execute = function execute(data, stack, tx, index, flags, recurse) { if (locktime > tx.locktime) return false; - if (!tx.inputs[index] || tx.inputs[index].seq === 0xffffffff) + if (!tx.inputs[index] || tx.inputs[index].sequence === 0xffffffff) return false; break;