forked from Mirrors/doipjs
Fix typo
This commit is contained in:
parent
841b90d580
commit
3d55950c4d
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ class Claim {
|
|||
if (this._state !== E.ClaimState.VERIFIED) {
|
||||
throw new Error('This claim has not yet been verified')
|
||||
}
|
||||
return this.verification
|
||||
return this._verification
|
||||
_
|
||||
}
|
||||
|
||||
|
@ -332,7 +332,7 @@ class Claim {
|
|||
fingerprint: this._fingerprint,
|
||||
state: this._state,
|
||||
dataMatches: this._dataMatches,
|
||||
verification: _this.verification,
|
||||
verification: this._verification,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue