mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 10:50:44 +00:00
fix empty log error
This commit is contained in:
parent
c2414371ca
commit
83aba3424e
1 changed files with 1 additions and 1 deletions
|
|
@ -345,7 +345,7 @@ func (s *Server) exec(ctx context.Context, codec ServerCodec, req *serverRequest
|
||||||
|
|
||||||
if err := codec.Write(response); err != nil {
|
if err := codec.Write(response); err != nil {
|
||||||
log.Error(fmt.Sprintf("RPC exec %v\n", err))
|
log.Error(fmt.Sprintf("RPC exec %v\n", err))
|
||||||
codec.Close()
|
codec.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
// when request was a subscribe request this allows these subscriptions to be actived
|
// when request was a subscribe request this allows these subscriptions to be actived
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue