aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-02-12 01:49:00 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-02-12 01:49:00 +0800
commitdb24fb792cf0dab91bc85e79aecf6758349002a4 (patch)
tree7ca7a1540dbf7226b5812690a0133201095661e7 /eth
parent3d6fd601c5eec13480b6c736f6811b663a885766 (diff)
downloadgo-tangerine-db24fb792cf0dab91bc85e79aecf6758349002a4.tar
go-tangerine-db24fb792cf0dab91bc85e79aecf6758349002a4.tar.gz
go-tangerine-db24fb792cf0dab91bc85e79aecf6758349002a4.tar.bz2
go-tangerine-db24fb792cf0dab91bc85e79aecf6758349002a4.tar.lz
go-tangerine-db24fb792cf0dab91bc85e79aecf6758349002a4.tar.xz
go-tangerine-db24fb792cf0dab91bc85e79aecf6758349002a4.tar.zst
go-tangerine-db24fb792cf0dab91bc85e79aecf6758349002a4.zip
Move standard fields to LogEvent
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go
index b8b9416d5..677b5d8e3 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -224,9 +224,9 @@ func (s *Ethereum) MaxPeers() int {
func (s *Ethereum) Start(seed bool) error {
jsonlogger.LogJson(&ethlogger.LogStarting{
ClientString: s.ClientIdentity().String(),
- Guid: ethutil.Bytes2Hex(s.ClientIdentity().Pubkey()),
Coinbase: ethutil.Bytes2Hex(s.KeyManager().Address()),
ProtocolVersion: ProtocolVersion,
+ LogEvent: ethlogger.LogEvent{Guid: ethutil.Bytes2Hex(s.ClientIdentity().Pubkey())},
})
err := s.net.Start()