cooper
Results
2
comments of
cooper
I did some incremental replacement testing. It was found that the problem lies in the gasprice_uint field. ```C char *gasprice = "0x4A817C800"; uint64_t gasprice_uint = 20000000000; ``` When i use...
> Hi @qingfengzxr `eth_rlp_uint` works differently. You're passing `gasprice_int` which is `20000000000` and occupies 5 bytes and fits in `uint64`. So this check is true in `eth_rlp_uint` source code: >...