Skip to content
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

Rafal/fetch all simulation data from file #2539

Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cbc6dee
chore(gas_price_service_v1): strictly ensure last_recorded_height is …
rymnc Dec 30, 2024
dba77da
fix
rymnc Dec 30, 2024
3b60422
chore: add test for gas price service
rymnc Dec 30, 2024
b151207
fix: remove unnecessary storage set, add test for uninit task instead
rymnc Dec 31, 2024
24569eb
Adopt simulator to the latest changes in types
rafal-ch Dec 31, 2024
b553b2c
Add new command
rafal-ch Dec 31, 2024
c74f4e6
Use reflection to get fields
rafal-ch Dec 31, 2024
6f9d595
Properly retrieve `blob_fee_wei()`
rafal-ch Dec 31, 2024
dbaceb8
Properly fetch L1 fee for both algorithms
rafal-ch Jan 2, 2025
c909cb4
Add some clarifying comments
rafal-ch Jan 2, 2025
37f7611
Calculate fullness and bytes pre simulation
rafal-ch Jan 2, 2025
e52014f
Read L2 block data from file
rafal-ch Jan 2, 2025
97ce5dd
Clean up code structure
rafal-ch Jan 2, 2025
9ebe803
Clean up some comments
rafal-ch Jan 2, 2025
a0464f1
Update generation of L1 data
rafal-ch Jan 2, 2025
8d07bfc
Fix typo
rafal-ch Jan 2, 2025
602403b
Introduce `L2BlockData`
rafal-ch Jan 2, 2025
18b9ae1
Read L2 block heights from the csv file
rafal-ch Jan 2, 2025
c6ce17d
Initialize updater with proper block height
rafal-ch Jan 2, 2025
0853b2e
Update X-axis labels on charts
rafal-ch Jan 3, 2025
ffb1bb0
Fix fullness drawing
rafal-ch Jan 3, 2025
d27d74c
Add tracing subscriber so we can see logs from the algorithm
rafal-ch Jan 3, 2025
61236ff
Track capacity and max size per block
rafal-ch Jan 3, 2025
12fc51e
Draw fullness not as percentage
rafal-ch Jan 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typo
rafal-ch committed Jan 2, 2025
commit 8d07bfc7a76865c0a1708a5921b48d53f1c8d1e6
2 changes: 1 addition & 1 deletion crates/client/src/client/schema/tx.rs
Original file line number Diff line number Diff line change
@@ -310,7 +310,7 @@ impl TryFrom<DryRunTransactionStatus> for TransactionExecutionResult {
}
}
DryRunTransactionStatus::Unknown => {
return Err(Self::Error::UnknownVariant("DryRuynTxStatus"))
return Err(Self::Error::UnknownVariant("DryRunTransactionStatus"))
}
})
}