From dc0bf56bf369accf9016f81299f077e9105df9e5 Mon Sep 17 00:00:00 2001 From: stasatdaglabs <39559713+stasatdaglabs@users.noreply.github.com> Date: Sun, 25 Apr 2021 16:27:47 +0300 Subject: [PATCH] Fix the mempool-limits stability test (#1690) * Add -v to the `go test` command. * Generate a new keypair for mempool-limits. * Set mempool-limits to time out only after 24 hours. (cherry picked from commit eb1703b948c740170334a333b0b0b29bcb208fdf) --- stability-tests/mempool-limits/run/run.sh | 2 +- stability-tests/mempool-limits/transactions.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stability-tests/mempool-limits/run/run.sh b/stability-tests/mempool-limits/run/run.sh index 7cccad54c..e3477243e 100755 --- a/stability-tests/mempool-limits/run/run.sh +++ b/stability-tests/mempool-limits/run/run.sh @@ -10,7 +10,7 @@ KASPAD_PID=$! sleep 1 -RUN_STABILITY_TESTS=true go test ../ -- --rpc-address=127.0.0.1:"${KASPAD_RPC_PORT}" --profile=7000 +RUN_STABILITY_TESTS=true go test ../ -v -timeout 86400s -- --rpc-address=127.0.0.1:"${KASPAD_RPC_PORT}" --profile=7000 TEST_EXIT_CODE=$? kill $KASPAD_PID diff --git a/stability-tests/mempool-limits/transactions.go b/stability-tests/mempool-limits/transactions.go index 3f69f6456..62d16fdbf 100644 --- a/stability-tests/mempool-limits/transactions.go +++ b/stability-tests/mempool-limits/transactions.go @@ -20,8 +20,8 @@ import ( ) const ( - payAddress = "kaspasim:qr79e37hxdgkn4xjjmfxvqvayc5gsmsql2660d08u9ej9vnc8lzcywr265u64" - payAddressPrivateKey = "0ec5d7308f65717f3f0c3e4d962d73056c1c255a16593b3989589281b51ad5bc" + payAddress = "kaspasim:qzuax2jhawd354e54thhpd9m9wg03pdzwjlpr4vtq3k7xrpumhhtwa2hkr3ep" + payAddressPrivateKey = "05d8f681e954a550395ee2297fc1a14f6e801f554c0b9d48cd7165a7ea72ff77" fundingCoinbaseTransactionAmount = 1000 outputsPerTransaction = 3 transactionFee = 1000