From e8cc72ed851207e065f61dbb77b1f90155f2de5a Mon Sep 17 00:00:00 2001 From: OutCast3k Date: Wed, 31 Dec 2014 14:22:05 +0000 Subject: [PATCH] bug fix which prevents certain types of transactions loading due to an infinite loop --- js/coin.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/coin.js b/js/coin.js index bf1acca..a19ecef 100644 --- a/js/coin.js +++ b/js/coin.js @@ -315,6 +315,10 @@ } else { this.chunks.push(opcode); } + + if(i<0x00){ + break; + } } return true;