mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
swarm/storage/localstore: fix export db.Put signature
This commit is contained in:
parent
529b0793e7
commit
6e3efd38b6
1 changed files with 1 additions and 1 deletions
|
|
@ -169,7 +169,7 @@ func (db *DB) Import(r io.Reader, legacy bool) (count int64, err error) {
|
||||||
wg.Done()
|
wg.Done()
|
||||||
<-tokenPool
|
<-tokenPool
|
||||||
default:
|
default:
|
||||||
err := db.Put(ctx, chunk.ModePutUpload, ch)
|
_, err := db.Put(ctx, chunk.ModePutUpload, ch)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errC <- err
|
errC <- err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue