Feat/payment vault enhancements#19
Merged
Bosun-Josh121 merged 3 commits intoLightForgeHub:mainfrom Jan 25, 2026
Merged
Conversation
📝 WalkthroughWalkthroughAdds per-user and per-expert booking lists: storage keys and helpers to append/retrieve booking IDs, exposes read-only getters on the contract, and updates the booking creation flow to register booking IDs in both user and expert lists before emitting the creation event. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Client as Client
participant Contract as PaymentVaultContract
participant Storage as Storage
participant EventSys as EventEmitter
Client->>Contract: book_session(user, expert, params)
Contract->>Storage: save_booking(BookingRecord) -> booking_id
Note over Contract,Storage: new flow: register booking id
Contract->>Storage: add_booking_to_user_list(user, booking_id)
Contract->>Storage: add_booking_to_expert_list(expert, booking_id)
Contract->>EventSys: emit booking_created(booking_id)
Contract-->>Client: return booking_id
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~22 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 3 | ❌ 2❌ Failed checks (1 warning, 1 inconclusive)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🧠 SkillSphere Pull Request 🌐
Close #15
Mark with an
xall the checkboxes that apply (like[x])cargo test(All tests passed)📌 Type of Change
📝 Changes Description
This PR enhances the Payment Vault smart contract by improving its internal logic, storage handling, and test coverage.
Summary of changes:
contract.rsto improve payment flow validation and safety.storage.rsfor clearer state management.lib.rsto align with the new contract behavior.test.rsto cover new logic and relevant edge cases.Impact:
📸 Evidence
cargo testexecuted successfully(Logs or screenshots attached if required.)
🌌 Comments
Thank you for contributing to SkillSphere! 🌍
Together we’re building a trustless, peer-to-peer consulting economy on Stellar 🚀
Summary by CodeRabbit
New Features
Tests
✏️ Tip: You can customize this high-level summary in your review settings.