You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Motivation
In #4834 a lot of tests were changed to wait for notifications instead
of retrying in a loop. The `test_wasm_end_to_end_allowances_fungible`
specifically creates multiple node services for the same chain. While
service 1 has already used the chain, services 2 and 3 need to
synchronize it. So we check the chain tip and if it is lower than the
one seen by service 1, we wait for the corresponding notification.
[In the ScyllaDB tests this
panics](https://github.com/linera-io/linera-protocol/actions/runs/18822090732/job/53699169562),
because we unwrap the chain tip, and it is `None` if the node service
does not have any block yet.
## Proposal
If it is `None`, also wait for the notification.
## Test Plan
CI
## Release Plan
- These changes should be backported to `testnet_conway`.
## Links
- Problem introduced in #4834.
- [reviewer
checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
0 commit comments