diff --git a/app/rpc/namespaces/eth/api.go b/app/rpc/namespaces/eth/api.go index 5df504fbdf..1286eecb56 100644 --- a/app/rpc/namespaces/eth/api.go +++ b/app/rpc/namespaces/eth/api.go @@ -700,12 +700,13 @@ func (api *PublicEthereumAPI) GetBlockByNumber(blockNum rpctypes.BlockNumber, fu return rpctypes.FormatBlock( tmtypes.Header{ - Version: latestBlock.Block.Version, - ChainID: api.clientCtx.ChainID, - Height: height + 1, - Time: time.Unix(0, 0), - LastBlockID: latestBlock.Block.LastBlockID, - ValidatorsHash: latestBlock.Block.NextValidatorsHash, + Version: latestBlock.Block.Version, + ChainID: api.clientCtx.ChainID, + Height: height + 1, + Time: time.Unix(0, 0), + LastBlockID: latestBlock.Block.LastBlockID, + ValidatorsHash: latestBlock.Block.NextValidatorsHash, + ProposerAddress: latestBlock.Block.ProposerAddress, }, 0, latestBlock.Block.Hash(),