We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c2309 commit 5d61f9dCopy full SHA for 5d61f9d
src/index.js
@@ -2,7 +2,6 @@ import { CID } from 'multiformats'
2
3
import { extractVerifiedContent } from './utils/car.js'
4
import { asAsyncIterable, asyncIteratorToBuffer } from './utils/itr.js'
5
-import { VerificationError } from './utils/errors.js'
6
import { randomUUID } from './utils/uuid.js'
7
8
class Saturn {
@@ -111,9 +110,7 @@ class Saturn {
111
110
const itr = metricsIterable(asAsyncIterable(res.body))
112
yield * extractVerifiedContent(cidPath, itr)
113
} catch (err) {
114
- // Assume verification error but could be a false positive.
115
- log.verificationError = err.message
116
-
+ log.error = err.message
117
throw err
118
} finally {
119
this._finalizeLog(log)
0 commit comments