Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
f05419f0
Unverified
Commit
f05419f0
authored
Jul 15, 2021
by
gary rong
Committed by
GitHub
Jul 15, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
les: fix eth_sendTransaction API (#23215)
parent
a5e3aa69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
api_backend.go
les/api_backend.go
+4
-1
No files found.
les/api_backend.go
View file @
f05419f0
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment