fix!: change hrp prefix on ootle address to otl_ - #1634
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughMigrates HRP/address prefixes from Changes
Sequence Diagram(s)sequenceDiagram
participant Gen as Manifest Generator
participant Conv as try_into / MaxString
participant Err as ManifestError
participant Engine as Engine / P2P / Processor
Gen->>Conv: log.message.try_into()
alt within limit
Conv-->>Gen: Ok(MaxString)
Gen->>Engine: emit log (uses MaxString)
Engine-->>Gen: success
else exceeds limit
Conv-->>Err: Err (conversion fails)
Err-->>Gen: InvalidInstruction { reason }
Gen->>Gen: propagate error
end
Estimated code review effort🎯 4 (Complex) | ⏱️ ~45 minutes
Possibly related PRs
Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
6039faf to
7b0d834
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
crates/engine/src/wasm/process.rs(1 hunks)crates/engine_types/src/limits.rs(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (6)
- GitHub Check: test
- GitHub Check: clippy
- GitHub Check: machete
- GitHub Check: check nightly
- GitHub Check: fmt
- GitHub Check: check stable
Test Results (CI)496 tests 484 ✅ 1h 34m 33s ⏱️ For more details on these failures, see this check. Results for commit 0a54394. |
Description
fix!: change hrp prefix on ootle address to otl_
adds hard limit on log string, and panic message size limit
Motivation and Context
Previously, it was
xtr_, which could be confused with the XTR currency.How Has This Been Tested?
Manually
What process can a PR reviewer use to test or verify this change?
Breaking Changes
Summary by CodeRabbit
New Features
Changes
Chores