fix(rpc): serialize return data bytes without prefix (#3019)

This commit is contained in:
Matthias Seitz
2023-06-06 14:01:06 +02:00
committed by GitHub
parent 95b9e32331
commit 132beb3561

View File

@ -42,6 +42,7 @@ pub struct BlockTraceResult {
pub struct DefaultFrame {
pub failed: bool,
pub gas: u64,
#[serde(serialize_with = "reth_primitives::serde_helper::serialize_hex_string_no_prefix")]
pub return_value: Bytes,
pub struct_logs: Vec<StructLog>,
}