When I submit the callBundle request to some public builders I have a more detailed error message:
cannot unmarshal hex string without 0x prefix into Go struct field CallBundleArgs.txs
It should be call_bundle_munger using some expired hexing handling.
How?
Updated to self.to_hex() to handle the transactions bundle bytes hexing.
Why?
I tried to simulate my bundle against historical blocks to backtest, and I keep receiving
400 Bad Request - decode txs issue
. Example like:What?
When I submit the callBundle request to some public builders I have a more detailed error message:
cannot unmarshal hex string without 0x prefix into Go struct field CallBundleArgs.txs
It should be
call_bundle_munger
using some expired hexing handling.How?
Updated to
self.to_hex()
to handle the transactions bundle bytes hexing.