Skip to content

Commit

Permalink
GH-399 Fix up argument list to make sure all arguments align.
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwaldp-oci committed Jun 30, 2022
1 parent 2fde691 commit f184f2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/nodeos_run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@
currencyAccountAmountBeforeTrx=node.getAccountEosBalanceStr(currencyAccount.name)

xferAmount="1.2345 {0}".format(CORE_SYMBOL)
unsignedTrxRet = node.transferFunds(currencyAccount, testeraAccount, xferAmount, "unsigned trx", False, False, True, False, False, True, None, True)
unsignedTrxRet = node.transferFunds(currencyAccount, testeraAccount, xferAmount, "unsigned trx", force=False, waitForTransBlock=False, exitOnError=True, reportStatus=False, sign=False, dontSend=True, expiration=None, skipSign=True)
unsignedTrxJsonFile = "unsigned_trx_file"
with open(unsignedTrxJsonFile, 'w') as outfile:
json.dump(unsignedTrxRet, outfile)
Expand Down

0 comments on commit f184f2b

Please sign in to comment.