-
Notifications
You must be signed in to change notification settings - Fork 1k
WIP - parallel tx workers tastora test #4639
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
base: release/v0.28.0
Are you sure you want to change the base?
Conversation
…ctx is now used to control lifecycle of tx workers (#4635)
- Add TearDownSuite method to BlobTestSuite for proper cleanup - Add comprehensive parallel transaction test in TransactionTestSuite - Add WithTxWorkerAccounts option to Framework for configuring worker accounts - Add TxWorkerAccounts field to Config struct with validation - Test verifies --tx.worker.accounts feature works correctly - Includes proper error handling and detailed logging for debugging
- Update to use v0.28.1-arabica which contains fixes - This version includes the queued submission feature with bug fixes
| // Add a delay to allow the node to fully initialize, especially when using worker accounts | ||
| if f.config.TxWorkerAccounts > 0 { | ||
| f.t.Logf("Waiting for bridge node with %d worker accounts to initialize...", f.config.TxWorkerAccounts) | ||
| time.Sleep(10 * time.Second) |
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.
this doesn't do anything
|
|
||
| // Retry transaction broadcasting with exponential backoff | ||
| var resp sdk.TxResponse | ||
| broadcastRetries := 3 |
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.
general comment here is we should try to use TxClient inside of our framework here so we don't have to touch app code. Even if that means building a standalone txclient using the validator's signer.
|
Current progress is:
|
|
update: fixed this bc default config was leading to some weird gas price estimation failures where we were submitting txs with insufficient fee returned... odd Need to debug why the estimation is borked in tastora |
No description provided.