Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
Fix incorrect call to addressToScript
Browse files Browse the repository at this point in the history
  • Loading branch information
JCThePants committed Nov 20, 2018
1 parent 05aceb8 commit 4a0a06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/class.Coinbase.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function Coinbase(args) {
const znode = blockTemplate.znode;

if (znode.payee) {
_addTransaction(znode.amount, buffers.addressToScript(znode.payee));
_addTransaction(znode.amount, _addressToScript(znode.payee));
}
}

Expand Down

0 comments on commit 4a0a06c

Please sign in to comment.