Commit 3730e2e0 authored by Andreas Bigger's avatar Andreas Bigger

fix: hex big util

parent 05d376ee
...@@ -219,12 +219,12 @@ func (s *EthClient) payloadCall(ctx context.Context, method string, id any) (*et ...@@ -219,12 +219,12 @@ func (s *EthClient) payloadCall(ctx context.Context, method string, id any) (*et
// ChainID fetches the chain id of the internal RPC. // ChainID fetches the chain id of the internal RPC.
func (s *EthClient) ChainID(ctx context.Context) (*big.Int, error) { func (s *EthClient) ChainID(ctx context.Context) (*big.Int, error) {
var id *big.Int var id hexutil.Big
err := s.client.CallContext(ctx, &id, "eth_chainId") err := s.client.CallContext(ctx, &id, "eth_chainId")
if err != nil { if err != nil {
return nil, err return nil, err
} }
return id, nil return (*big.Int)(&id), nil
} }
func (s *EthClient) InfoByHash(ctx context.Context, hash common.Hash) (eth.BlockInfo, error) { func (s *EthClient) InfoByHash(ctx context.Context, hash common.Hash) (eth.BlockInfo, error) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment