Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #461 from Jongsic/jongsic/fix-decode-legacy-tx
Browse files Browse the repository at this point in the history
Fix Decoding Legacy Transaction RLP
  • Loading branch information
jimni1222 authored Jun 4, 2021
2 parents ae1b512 + 0e70243 commit 25390e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function _decode(rlpEncoded) {
gas: utils.trimLeadingZero(gas),
to,
value: utils.trimLeadingZero(value),
input: utils.trimLeadingZero(input),
input: input,
signatures: [v, r, s],
}
}
Expand Down

0 comments on commit 25390e1

Please sign in to comment.