mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 19:00:46 +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
|
return tester
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *downloadTester) TrieDB() *trie.Database {
|
func (dl *downloadTester) TrieDB() *trie.Database {
|
||||||
return db.triedb
|
return dl.triedb
|
||||||
}
|
}
|
||||||
|
|
||||||
// terminate aborts any operations on the embedded downloader and releases all
|
// terminate aborts any operations on the embedded downloader and releases all
|
||||||
|
|
@ -342,7 +342,7 @@ func (dl *downloadTester) Config() *params.ChainConfig {
|
||||||
return &config
|
return &config
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bc *downloadTester) InterruptInsert(on bool) {
|
func (dl *downloadTester) InterruptInsert(on bool) {
|
||||||
}
|
}
|
||||||
|
|
||||||
type downloadTesterPeer struct {
|
type downloadTesterPeer struct {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue