diff --git a/beacon-chain/node/node.go b/beacon-chain/node/node.go index 348c4024f046..1f37e49afdfd 100644 --- a/beacon-chain/node/node.go +++ b/beacon-chain/node/node.go @@ -505,6 +505,8 @@ func (b *BeaconNode) registerPOWChainService() error { if len(knownContract) > 0 && !bytes.Equal(cfg.DepositContract.Bytes(), knownContract) { return fmt.Errorf("database contract is %#x but tried to run with %#x", knownContract, cfg.DepositContract.Bytes()) } + + log.Infof("Deposit contract: %#x", cfg.DepositContract.Bytes()) return b.services.RegisterService(web3Service) }