Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
invocamanman committed Sep 4, 2023
1 parent e91f21b commit fcec335
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/processor-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ function encodedStringToArray(encodedTransactions) {
throw new Error('encodedTxBytes array too short');
}

decodedRawTx.push(ethers.utils.hexlify(encodedTxBytes.slice(offset, offset + 1 + length + Constants.SIGNATURE_BYTES)));
offset = offset + 1 + length + Constants.SIGNATURE_BYTES;
decodedRawTx.push(ethers.utils.hexlify(encodedTxBytes.slice(offset, offset + 1 + length + 1 + Constants.SIGNATURE_BYTES)));
offset = offset + 1 + length + 1 + Constants.SIGNATURE_BYTES;
} else {
throw new Error('Error');
}
Expand Down

0 comments on commit fcec335

Please sign in to comment.