-
Notifications
You must be signed in to change notification settings - Fork 161
Conversation
Codecov Report
@@ Coverage Diff @@
## fedekunze/msg-ethermint #541 +/- ##
===========================================================
+ Coverage 70.60% 70.67% +0.07%
===========================================================
Files 43 43
Lines 2228 2237 +9
===========================================================
+ Hits 1573 1581 +8
Misses 516 516
- Partials 139 140 +1
Continue to review full report at Codecov.
|
chainIDEpoch, err := ethermint.ParseChainID(ctx.ChainID()) | ||
if err != nil { | ||
return nil, err |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@noot this is where we parse the chain ID epoch number for ethereum compatibility
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getting some errors when sending a tx:
$ geth attach http://172.17.0.2:8545
> eth.sendTransaction({from: eth.accounts[0], to: eth.accounts[0], value: 0x1})
Error: invalid chain ID: 17: failed to simulate tx
at web3.js:6347:37(47)
at web3.js:5081:62(37)
at <eval>:1:20(16)
@fedekunze figured out the issue, could you change this so we cannot use an invalid chain ID (ie |
replaced by #542 |
closes #540