Stop failing the send transaction test (#4416)

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
teor 2022-05-19 05:14:39 +10:00 committed by GitHub
parent 191b1c02a2
commit 35aaee5308
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -52,7 +52,12 @@ pub async fn run() -> Result<()> {
// We want a zebra state dir and a lightwalletd data dir in place,
// so `UpdateCachedState` can be used as our test type
let test_type = UpdateCachedState;
//
// But for now, we don't want to require the cached state, because it has been unreliable.
// TODO: use `UpdateCachedState`
let test_type = FullSyncFromGenesis {
allow_lightwalletd_cached_state: true,
};
let cached_state_path = test_type.zebrad_state_path("send_transaction_tests".to_string());
if cached_state_path.is_none() {