We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac661b4 commit d90a5bfCopy full SHA for d90a5bf
chainbench/user/protocol/evm.py
@@ -54,15 +54,9 @@ def _debug_trace_call_params_factory(self, rng: RNG) -> list[dict | BlockNumber]
54
tx_data = self.test_data.get_random_tx(rng)
55
tx_param = {
56
"to": tx_data["to"],
57
- "gas": tx_data["gas"],
58
- "value": tx_data["value"],
+ "value": "0x0",
59
}
60
61
- if "maxFeePerGas" in tx_data:
62
- tx_param["maxFeePerGas"] = tx_data["maxFeePerGas"]
63
- else:
64
- tx_param["gasPrice"] = tx_data["gasPrice"]
65
-
66
if "input" in tx_data:
67
if tx_data["input"] != "0x":
68
tx_param["data"] = tx_data["input"]
0 commit comments