The TestCrash in ./integration/integration_test.go:24 fails sometimes on line 298 when verifying the call to decryptBallots because the previous transactions have not been correctly included.
This has mostly been fixed by allowing the pool.Add to fail in txManager.addAndWait in ./integration/transaction.go:117, but might pop up here and there again.
Another failure is in line 288, the call waitForStatus(types.PubSharesSubmitted, ...) fails with already made a submission. But this is much more rare and has not been invested into yet.
The TestCrash in
./integration/integration_test.go:24
fails sometimes on line 298 when verifying the call todecryptBallots
because the previous transactions have not been correctly included. This has mostly been fixed by allowing thepool.Add
to fail intxManager.addAndWait
in./integration/transaction.go:117
, but might pop up here and there again.Another failure is in line 288, the call
waitForStatus(types.PubSharesSubmitted, ...)
fails withalready made a submission
. But this is much more rare and has not been invested into yet.