We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5f6b1d commit e417c98Copy full SHA for e417c98
src/test/fuzz/coins_view.cpp
@@ -163,7 +163,8 @@ FUZZ_TARGET(coins_view, .init = initialize_coins_view)
163
Coin coin_using_backend_get_coin;
164
if (backend_coins_view.GetCoin(random_out_point, coin_using_backend_get_coin)) {
165
assert(exists_using_have_coin_in_backend);
166
- assert(coin_using_get_coin == coin_using_backend_get_coin);
+ // Note we can't assert that `coin_using_get_coin == coin_using_backend_get_coin` because the coin in
167
+ // the cache may have been modified but not yet flushed.
168
} else {
169
assert(!exists_using_have_coin_in_backend);
170
}
0 commit comments