diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-03-03 17:41:52 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-03-03 17:41:52 +0800 |
commit | e7030c4bf59e8e148822c50ae1a5896c604c38c1 (patch) | |
tree | 4403290e84761608e8437d23ecef4d934406dd46 /light/odr_util.go | |
parent | faf713632c307e3fd77a492481846b858ad991f9 (diff) | |
download | dexon-e7030c4bf59e8e148822c50ae1a5896c604c38c1.tar.gz dexon-e7030c4bf59e8e148822c50ae1a5896c604c38c1.tar.zst dexon-e7030c4bf59e8e148822c50ae1a5896c604c38c1.zip |
all: update light logs (and a few others) to the new model
Diffstat (limited to 'light/odr_util.go')
-rw-r--r-- | light/odr_util.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/light/odr_util.go b/light/odr_util.go index e7f94db10..17e9aadcb 100644 --- a/light/odr_util.go +++ b/light/odr_util.go @@ -19,7 +19,6 @@ package light import ( "bytes" "errors" - "fmt" "math/big" "github.com/ethereum/go-ethereum/common" @@ -27,7 +26,6 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/ethdb" - "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/rlp" "golang.org/x/net/context" ) @@ -149,7 +147,6 @@ func GetBody(ctx context.Context, odr OdrBackend, hash common.Hash, number uint6 } body := new(types.Body) if err := rlp.Decode(bytes.NewReader(data), body); err != nil { - log.Error(fmt.Sprintf("invalid block body RLP for hash %x: %v", hash, err)) return nil, err } return body, nil @@ -181,7 +178,6 @@ func GetBlockReceipts(ctx context.Context, odr OdrBackend, hash common.Hash, num r := &ReceiptsRequest{Hash: hash, Number: number} if err := odr.Retrieve(ctx, r); err != nil { return nil, err - } else { - return r.Receipts, nil } + return r.Receipts, nil } |