You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to add decimal block number support to seth estimate.
Seems like just adding the following line from seth-call to seth-estimate is enough: seth-call#L26
[[ $ETH_BLOCK = [0-9]* ]] && ETH_BLOCK=$(seth --to-hex "$ETH_BLOCK")
The text was updated successfully, but these errors were encountered:
It is a little confusing having to pass block number as hex in seth estimate, but as dec in seth call:
seth estimate -B 0xabcdef $CONTRACT $METHOD
seth call -B 123456 $CONTRACT $METHOD
It would be great to add decimal block number support to seth estimate.$ETH_BLOCK = [0-9]* ]] && ETH_BLOCK=$ (seth --to-hex "$ETH_BLOCK")
Seems like just adding the following line from seth-call to seth-estimate is enough:
seth-call#L26
[[
The text was updated successfully, but these errors were encountered: