les: fix eth_sendTransaction API (#23215)

pull/23220/head
gary rong 3 years ago committed by GitHub
parent a5e3aa693c
commit f05419f0fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      les/api_backend.go

@ -60,8 +60,11 @@ func (b *LesApiBackend) SetHead(number uint64) {
}
func (b *LesApiBackend) HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error) {
// Return the latest current as the pending one since there
// is no pending notion in the light client. TODO(rjl493456442)
// unify the behavior of `HeaderByNumber` and `PendingBlockAndReceipts`.
if number == rpc.PendingBlockNumber {
return nil, nil
return b.eth.blockchain.CurrentHeader(), nil
}
if number == rpc.LatestBlockNumber {
return b.eth.blockchain.CurrentHeader(), nil

Loading…
Cancel
Save