Skip to content

Commit

Permalink
Fixes breaking change to tx var assignment in transactions.js
Browse files Browse the repository at this point in the history
  • Loading branch information
comountainclimber committed Jun 25, 2019
1 parent 593a1a3 commit 39acf1f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/modules/transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,7 @@ export const sendTransaction = ({
fees,
url,
balance: undefined,
tx: {
serialize: () => undefined,
},
tx: undefined,
intents: undefined,
script: undefined,
gas: undefined,
Expand Down Expand Up @@ -245,6 +243,7 @@ export const sendTransaction = ({
}

const feeSize = calculateTransactionFees(
// $FlowFixMe
hexStringToByteArray(config.tx.serialize()),
)

Expand Down

0 comments on commit 39acf1f

Please sign in to comment.