Merge pull request #1069 from powdr-labs/update-evm-test

update evm test
This commit is contained in:
Leo
2024-02-19 22:53:14 +00:00
committed by GitHub
2 changed files with 1 additions and 5 deletions

View File

@@ -9,7 +9,4 @@ powdr-riscv-runtime = { path = "../../../../riscv-runtime" }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive", "rc"] }
serde_cbor = { version = "0.11.2", default-features = false, features = ["alloc"] }
# TODO: remove when we update the cargo riscv nightly
ahash = { version = "=0.8.6", default-features = false }
[workspace]

View File

@@ -1,5 +1,6 @@
#![no_std]
use powdr_riscv_runtime::{coprocessors::get_data_serde, print};
use revm::{
db::{CacheDB, EmptyDB},
primitives::{
@@ -7,10 +8,8 @@ use revm::{
},
EVM,
};
use powdr_riscv_runtime::{print, coprocessors::get_data_serde};
extern crate alloc;
use alloc::vec;
use alloc::vec::Vec;
#[no_mangle]