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

Commit

Permalink
Merge pull request #110 from btchip/zcash_overwinter_fix
Browse files Browse the repository at this point in the history
Fix ZCash serialization
  • Loading branch information
amougel committed Jul 25, 2018
2 parents 335786c + 0c4aee4 commit 5301ba8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/libs/btchip/btchip-js-api/BTChip.js
Original file line number Diff line number Diff line change
Expand Up @@ -1919,9 +1919,9 @@ var BTChip = Class.create({
data = data.concat(transaction['locktime']);
if (overwinter) {
data = data.concat(transaction['nExpiryHeight']);
if (typeof transaction['extraData'] != 'undefined') {
data = data.concat(transaction['extraData']);
}
}
if (typeof transaction['extraData'] != 'undefined') {
data = data.concat(transaction['extraData']);
}
}
return data;
Expand Down

0 comments on commit 5301ba8

Please sign in to comment.