Skip to content

Commit

Permalink
reduce batch size to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
ssilagadze committed Dec 12, 2023
1 parent fbe2265 commit bba7867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/arc_txt_endpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func TestBatchChainedTxs(t *testing.T) {
utxos := getUtxos(t, address)
require.True(t, len(utxos) > 0, "No UTXOs available for the address")

txs, err := createTxChain(privateKey, utxos[0], 100)
txs, err := createTxChain(privateKey, utxos[0], 50)
require.NoError(t, err)

arcBody := make([]api.TransactionRequest, len(txs))
Expand Down

0 comments on commit bba7867

Please sign in to comment.