From 3d55950c4d100fdad3a7cdebc11c2e7026d49a42 Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Mon, 19 Apr 2021 13:43:24 +0200 Subject: [PATCH] Fix typo --- src/claim.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/claim.js b/src/claim.js index aace64e..0a69391 100644 --- a/src/claim.js +++ b/src/claim.js @@ -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, } } }