fix: we are checking value's length and i dont know why or where this came from...

This commit is contained in:
Derrick Hammer 2024-01-09 16:14:31 -05:00
parent 5ed286a639
commit f6dc2c1d53
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 8 deletions

View File

@ -127,10 +127,6 @@ func (n *NodeImpl) GetCachedStorageLocations(hash *encoding.Multihash, kinds []t
}
for key, value := range nodeMap {
if len(value) < 4 {
continue
}
expiry, ok := value[3].(int64)
if !ok || expiry < ts {
continue
@ -155,11 +151,10 @@ func (n *NodeImpl) GetCachedStorageLocations(hash *encoding.Multihash, kinds []t
}
storageLocation := storage.NewStorageLocation(int(t), addresses, expiry)
if len(value) > 4 {
if providerMessage, ok := value[4].([]byte); ok {
(storageLocation).SetProviderMessage(providerMessage)
}
}
locations[key] = storageLocation
}