From 4639acbd343bdb0ce30f83d783e10d544f4c4518 Mon Sep 17 00:00:00 2001 From: manolodewiner Date: Wed, 23 May 2018 14:33:45 +0200 Subject: [PATCH] resolve promise to avoid invalid input --- test/integration/test_integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test_integration.js b/test/integration/test_integration.js index b416fec..a3fa072 100644 --- a/test/integration/test_integration.js +++ b/test/integration/test_integration.js @@ -145,7 +145,7 @@ test('Valid TRANSFER transaction with multiple Ed25519 inputs from different tra ) return conn.postTransactionCommit(transferTxSigned1) - .then(conn.postTransactionCommit(transferTxSigned2)) + .then(() => conn.postTransactionCommit(transferTxSigned2)) .then(() => { const transferTxMultipleInputs = Transaction.makeTransferTransaction( [{ tx: transferTxSigned1, output_index: 0 },