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
ac7ad811
Unverified
Commit
ac7ad811
authored
Aug 19, 2022
by
Felix Lange
Committed by
GitHub
Aug 19, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
internal/ethapi: fix build regression (#25555)
parent
08658806
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
transaction_args_test.go
internal/ethapi/transaction_args_test.go
+5
-5
No files found.
internal/ethapi/transaction_args_test.go
View file @
ac7ad811
...
@@ -298,6 +298,9 @@ func (b *backendMock) PendingBlockAndReceipts() (*types.Block, types.Receipts) {
...
@@ -298,6 +298,9 @@ func (b *backendMock) PendingBlockAndReceipts() (*types.Block, types.Receipts) {
func
(
b
*
backendMock
)
GetReceipts
(
ctx
context
.
Context
,
hash
common
.
Hash
)
(
types
.
Receipts
,
error
)
{
func
(
b
*
backendMock
)
GetReceipts
(
ctx
context
.
Context
,
hash
common
.
Hash
)
(
types
.
Receipts
,
error
)
{
return
nil
,
nil
return
nil
,
nil
}
}
func
(
b
*
backendMock
)
GetLogs
(
ctx
context
.
Context
,
blockHash
common
.
Hash
,
number
uint64
)
([][]
*
types
.
Log
,
error
)
{
return
nil
,
nil
}
func
(
b
*
backendMock
)
GetTd
(
ctx
context
.
Context
,
hash
common
.
Hash
)
*
big
.
Int
{
return
nil
}
func
(
b
*
backendMock
)
GetTd
(
ctx
context
.
Context
,
hash
common
.
Hash
)
*
big
.
Int
{
return
nil
}
func
(
b
*
backendMock
)
GetEVM
(
ctx
context
.
Context
,
msg
core
.
Message
,
state
*
state
.
StateDB
,
header
*
types
.
Header
,
vmConfig
*
vm
.
Config
)
(
*
vm
.
EVM
,
func
()
error
,
error
)
{
func
(
b
*
backendMock
)
GetEVM
(
ctx
context
.
Context
,
msg
core
.
Message
,
state
*
state
.
StateDB
,
header
*
types
.
Header
,
vmConfig
*
vm
.
Config
)
(
*
vm
.
EVM
,
func
()
error
,
error
)
{
return
nil
,
nil
,
nil
return
nil
,
nil
,
nil
...
@@ -325,11 +328,8 @@ func (b *backendMock) TxPoolContent() (map[common.Address]types.Transactions, ma
...
@@ -325,11 +328,8 @@ func (b *backendMock) TxPoolContent() (map[common.Address]types.Transactions, ma
func
(
b
*
backendMock
)
TxPoolContentFrom
(
addr
common
.
Address
)
(
types
.
Transactions
,
types
.
Transactions
)
{
func
(
b
*
backendMock
)
TxPoolContentFrom
(
addr
common
.
Address
)
(
types
.
Transactions
,
types
.
Transactions
)
{
return
nil
,
nil
return
nil
,
nil
}
}
func
(
b
*
backendMock
)
SubscribeNewTxsEvent
(
chan
<-
core
.
NewTxsEvent
)
event
.
Subscription
{
return
nil
}
func
(
b
*
backendMock
)
SubscribeNewTxsEvent
(
chan
<-
core
.
NewTxsEvent
)
event
.
Subscription
{
return
nil
}
func
(
b
*
backendMock
)
BloomStatus
()
(
uint64
,
uint64
)
{
return
0
,
0
}
func
(
b
*
backendMock
)
BloomStatus
()
(
uint64
,
uint64
)
{
return
0
,
0
}
func
(
b
*
backendMock
)
GetLogs
(
ctx
context
.
Context
,
blockHash
common
.
Hash
)
([][]
*
types
.
Log
,
error
)
{
return
nil
,
nil
}
func
(
b
*
backendMock
)
ServiceFilter
(
ctx
context
.
Context
,
session
*
bloombits
.
MatcherSession
)
{}
func
(
b
*
backendMock
)
ServiceFilter
(
ctx
context
.
Context
,
session
*
bloombits
.
MatcherSession
)
{}
func
(
b
*
backendMock
)
SubscribeLogsEvent
(
ch
chan
<-
[]
*
types
.
Log
)
event
.
Subscription
{
return
nil
}
func
(
b
*
backendMock
)
SubscribeLogsEvent
(
ch
chan
<-
[]
*
types
.
Log
)
event
.
Subscription
{
return
nil
}
func
(
b
*
backendMock
)
SubscribePendingLogsEvent
(
ch
chan
<-
[]
*
types
.
Log
)
event
.
Subscription
{
func
(
b
*
backendMock
)
SubscribePendingLogsEvent
(
ch
chan
<-
[]
*
types
.
Log
)
event
.
Subscription
{
...
...
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