We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fdecc11 + 07bdba6 commit 4322632Copy full SHA for 4322632
cmd/ethereum/main.go
@@ -67,6 +67,7 @@ func main() {
67
DataDir: Datadir,
68
LogFile: LogFile,
69
LogLevel: LogLevel,
70
+ LogFormat: LogFormat,
71
MaxPeers: MaxPeer,
72
Port: OutboundPort,
73
NAT: NAT,
eth/backend.go
@@ -209,9 +209,7 @@ func (s *Ethereum) Coinbase() []byte { return nil } // TODO
209
func (s *Ethereum) Start() error {
210
jsonlogger.LogJson(ðlogger.LogStarting{
211
ClientString: s.net.Name,
212
- Coinbase: ethutil.Bytes2Hex(s.KeyManager().Address()),
213
ProtocolVersion: ProtocolVersion,
214
- LogEvent: ethlogger.LogEvent{Guid: ethutil.Bytes2Hex(crypto.FromECDSAPub(&s.net.PrivateKey.PublicKey))},
215
})
216
217
err := s.net.Start()
0 commit comments