-
Notifications
You must be signed in to change notification settings - Fork 28
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
refactor(mempool_test_utils): add non mut account_with_id, rename previous implementation #2801
Conversation
Graphite Automations"Yair - Auto-assign" took an action on this PR • (12/19/24)1 assignee was added to this PR based on Yair's automation. |
e02ed63
to
861c70f
Compare
da0ded7
to
7322a80
Compare
861c70f
to
85383c4
Compare
7322a80
to
a51b3af
Compare
85383c4
to
471426d
Compare
a51b3af
to
c1f3c9c
Compare
471426d
to
10faaa6
Compare
c1f3c9c
to
0aaaacb
Compare
10faaa6
to
9eca0c3
Compare
0aaaacb
to
3379aa0
Compare
Artifacts upload workflows: |
…vious implementation
3379aa0
to
56942a2
Compare
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.
Reviewed 3 of 3 files at r1, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @yair-starkware)
crates/mempool_test_utils/src/starknet_api_test_utils.rs
line 209 at r1 (raw file):
} pub fn account_with_id(&self, account_id: AccountId) -> &AccountTransactionGenerator {
Why do you need both?
Previously, alonh5 (Alon Haramati) wrote…
We need to hold the funding account and the account to be deployed simultaneously. It is not possible if they require a mutable ref of |
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.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @yair-starkware)
crates/mempool_test_utils/src/starknet_api_test_utils.rs
line 209 at r1 (raw file):
Previously, yair-starkware (Yair) wrote…
We need to hold the funding account and the account to be deployed simultaneously. It is not possible if they require a mutable ref of
self
Got it, thanks!
No description provided.