Closed yarikbratashchuk closed 2 months ago
The changes involve a significant update to error handling in the DummyDA
implementation, specifically modifying how heights are validated. The error constant ErrNoBlobAtHeight
has been replaced with ErrTooHigh
, which indicates a future height request. The test suite has also been updated to reflect these changes, with a renamed test function and simplified error handling logic.
Files | Change Summary |
---|---|
test/dummy.go |
Replaced ErrNoBlobAtHeight with ErrTooHigh ; updated GetIDs method to handle future heights. |
test/test_suite.go |
Renamed NoBlobsAtHeightTest to HeightFromFutureTest ; simplified error handling in tests. |
In fields of green where bunnies play,
A change has come to brighten the day.
Heights once lost in shadows of doubt,
Now leap forward, with joy we shout!
With errors clearer, we hop with glee,
New paths await, come dance with me! 🐇✨
[!TIP]
Early access features: disabled
We are currently testing the following features in early access: - **Anthropic `claude-3-5-sonnet` for code reviews**: The new Claude model has stronger code understanding and code generation capabilities than the previous models. We're excited to hear your feedback as we evaluate its performance over the next few days. Note: - You can enable or disable early access features from the CodeRabbit UI or by updating the CodeRabbit configuration file. - Please join our [Discord Community](https://discord.com/invite/GsXnASn26c) to provide feedback and report issues on the [discussion post](https://discordapp.com/channels/1134356397673414807/1279579842131787838).
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
We need to handle the case where full node goes above the max height of the da, so it's consistent with real world da implementations, and handled correctly by the full node retrieve loop.
Summary by CodeRabbit
New Features
Bug Fixes