swarm, cmd/swarm: address ineffectual assignments (#18048)
* swarm, cmd/swarm: address ineffectual assignments * swarm/network: remove unused vars from testHandshake * swarm/storage/feed: revert cursor changes
This commit is contained in:
committed by
Viktor Trón
parent
81533deae5
commit
cf3b187bde
@@ -223,7 +223,13 @@ func newServices(allowRaw bool) adapters.Services {
|
||||
ctxlocal, cancel := context.WithTimeout(context.Background(), time.Second)
|
||||
defer cancel()
|
||||
keys, err := wapi.NewKeyPair(ctxlocal)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
privkey, err := w.GetPrivateKey(keys)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
pssp := pss.NewPssParams().WithPrivateKey(privkey)
|
||||
pssp.MsgTTL = time.Second * 30
|
||||
pssp.AllowRaw = allowRaw
|
||||
|
Reference in New Issue
Block a user