Merge pull request #793 from denizdanaie/patch-2

Prepare-Transaction-txJSON-must-be-a-string
This commit is contained in:
Rome Reginelli
2020-03-03 14:41:43 -08:00
committed by GitHub

View File

@@ -183,7 +183,7 @@ async function doPrepare() {
console.log("Transaction expires after ledger:", maxLedgerVersion)
return preparedTx.txJSON
}
txJSON = doPrepare()
txJSON = JSON.stringify(doPrepare())
```
{{ start_step("Prepare") }}