mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 13:16:42 +00:00
fix store request log
This commit is contained in:
parent
46aa7db5fd
commit
438195842c
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ type storeRequestMsgData struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *storeRequestMsgData) String() string {
|
func (self *storeRequestMsgData) String() string {
|
||||||
return fmt.Sprint("From: %v, Key: %x; ID: %v, requestTimeout: %v, storageTimeout: %v, SData %x", self.peer.Addr(), self.Key[:4], self.Id, self.requestTimeout, self.storageTimeout, self.SData[:10])
|
return fmt.Sprintf("From: %v, Key: %x; ID: %v, requestTimeout: %v, storageTimeout: %v, SData %x", self.peer.Addr(), self.Key[:4], self.Id, self.requestTimeout, self.storageTimeout, self.SData[:10])
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue