Skip to content

Commit

Permalink
Add empty lines to multiple repos to check if the CI works
Browse files Browse the repository at this point in the history
  • Loading branch information
lima-limon-inc committed Dec 6, 2024
1 parent 764a0c3 commit 6384667
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions crates/l2/prover/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ use tracing::{self, debug, error, warn, Level};

#[tokio::main]
async fn main() {
println!("TEST ",);
println!("TEST ",);
println!("TEST ",);
println!("TEST ",);
println!("TEST ",);
println!("TEST ",);
println!("TEST ",);
println!("TEST ",);
println!("TEST ",);
println!("TEST ",);
let subscriber = tracing_subscriber::FmtSubscriber::builder()
// Hiding debug!() logs.
.with_max_level(Level::INFO)
Expand Down
11 changes: 11 additions & 0 deletions crates/vm/levm/src/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1179,6 +1179,17 @@ impl VM {

/// Gets account, first checking the cache and then the database (caching in the second case)
pub fn get_account(&mut self, address: Address) -> Account {
println!("TEST",);
println!("TEST",);
println!("TEST",);
println!("TEST",);
println!("TEST",);
println!("TEST",);
println!("TEST",);
println!("TEST",);
println!("TEST",);
println!("TEST",);
println!("TEST",);
match cache::get_account(&self.cache, &address) {
Some(acc) => acc.clone(),
None => {
Expand Down

0 comments on commit 6384667

Please sign in to comment.