mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-29 01:37:37 +00:00
eth: use consistent receiver name for downloadTester (#1797)
This commit is contained in:
parent
dfaa7fc19f
commit
10ac141b76
1 changed files with 3 additions and 3 deletions
|
|
@ -82,8 +82,8 @@ func newTester() *downloadTester {
|
|||
return tester
|
||||
}
|
||||
|
||||
func (db *downloadTester) TrieDB() *trie.Database {
|
||||
return db.triedb
|
||||
func (dl *downloadTester) TrieDB() *trie.Database {
|
||||
return dl.triedb
|
||||
}
|
||||
|
||||
// terminate aborts any operations on the embedded downloader and releases all
|
||||
|
|
@ -342,7 +342,7 @@ func (dl *downloadTester) Config() *params.ChainConfig {
|
|||
return &config
|
||||
}
|
||||
|
||||
func (bc *downloadTester) InterruptInsert(on bool) {
|
||||
func (dl *downloadTester) InterruptInsert(on bool) {
|
||||
}
|
||||
|
||||
type downloadTesterPeer struct {
|
||||
|
|
|
|||
Loading…
Reference in a new issue