Skip to content

Commit e6f4cb9

Browse files
Rename EVM debug terminology to EVM tracing
1 parent 6054bed commit e6f4cb9

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "evm-debug-api"
2+
name = "evm-tracing-api"
33
version = "0.1.0"
44
edition = "2021"
55
publish = false
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
//! The runtime API for the EVM debug logic.
1+
//! The runtime API for the EVM tracing logic.
22
33
#![cfg_attr(not(feature = "std"), no_std)]
44

55
use ethereum::TransactionV2 as Transaction;
66
use sp_core::{sp_std::vec::Vec, H160, H256, U256};
77

88
sp_api::decl_runtime_apis! {
9-
/// Runtime API for the EVM debug logic.
10-
pub trait EvmDebugApi {
9+
/// Runtime API for the EVM tracing logic.
10+
pub trait EvmTracingApi {
1111
/// Trace transaction.
1212
fn trace_transaction(
1313
extrinsics: Vec<Block::Extrinsic>,

crates/humanode-runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ eip191-token-claim = { path = "../eip191-token-claim", default-features = false
1616
eip712-account-claim = { path = "../eip712-account-claim", default-features = false }
1717
eip712-common = { path = "../eip712-common", default-features = false }
1818
eip712-token-claim = { path = "../eip712-token-claim", default-features = false }
19-
evm-debug-api = { path = "../evm-debug-api", default-features = false }
2019
evm-nonces-recovery = { path = "../evm-nonces-recovery", default-features = false }
20+
evm-tracing-api = { path = "../evm-tracing-api", default-features = false }
2121
keystore-bioauth-account-id = { path = "../keystore-bioauth-account-id", default-features = false }
2222
pallet-balanced-currency-swap-bridges-initializer = { path = "../pallet-balanced-currency-swap-bridges-initializer", default-features = false }
2323
pallet-bioauth = { path = "../pallet-bioauth", default-features = false }
@@ -165,10 +165,10 @@ std = [
165165
"eip712-common/std",
166166
"eip712-token-claim/std",
167167
"ethereum/std",
168-
"evm-debug-api/std",
169168
"evm-gasometer/std",
170169
"evm-nonces-recovery/std",
171170
"evm-runtime/std",
171+
"evm-tracing-api/std",
172172
"evm/std",
173173
"fp-evm/std",
174174
"fp-rpc/std",

crates/humanode-runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,7 @@ impl_runtime_apis! {
15051505
}
15061506

15071507
#[cfg(feature = "evm-tracing")]
1508-
impl evm_debug_api::EvmDebugApi<Block> for Runtime {
1508+
impl evm_tracing_api::EvmTracingApi<Block> for Runtime {
15091509
fn trace_transaction(
15101510
extrinsics: Vec<<Block as BlockT>::Extrinsic>,
15111511
traced_transaction: &EthereumTransaction,

0 commit comments

Comments
 (0)