-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Added update current turn after proc raise is called #14
Conversation
node/tests/integration/main.rs
Outdated
@@ -560,7 +560,7 @@ async fn assert_slot_status_raise( | |||
assert_eq!( | |||
game_account_storage.get_item(slot_index), | |||
RpoDigest::new([ | |||
Felt::from(slot_data.current_turn_index()), | |||
Felt::from(slot_data.current_turn_index() + 13), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we name this offset (13) ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in the latest PR
aze-server/node/tests/integration/main.rs
Line 1014 in c6a10c2
Felt::from(slot_data.current_turn_index() + PLAYER_STATS_SLOTS), |
Feat: Adding end-to-end test for testing overall flow
Feat: Add proc bet for small and big blind
Feat: Added update current turn and update phase logic in proc check
Feat: Added update current turn and update phase logic in proc fold
Added update current turn and update phase logic in proc call
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good Work!
No description provided.