Skip to content

Commit 8ea5440

Browse files
committed
Merge pull request bitcoinjs#502 from alex-seville/patch-1
Remove `const` and replace with `var`
2 parents aff56db + a1da306 commit 8ea5440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var REVERSE_OPS = (function () {
1313
return result
1414
})()
1515

16-
const OP_INT_BASE = OPS.OP_RESERVED // OP_1 - 1
16+
var OP_INT_BASE = OPS.OP_RESERVED // OP_1 - 1
1717

1818
function toASM (chunks) {
1919
if (types.Buffer(chunks)) {

0 commit comments

Comments
 (0)