mirror of https://github.com/nucypher/nucypher.git
Forced node verification resets all verification attributes to False
parent
c9f7057dd3
commit
01832638e5
|
@ -1086,8 +1086,13 @@ class Teacher:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# Only perform this check once per object
|
if force:
|
||||||
if not force and self.verified_node:
|
self.verified_interface = False
|
||||||
|
self.verified_node = False
|
||||||
|
self.verified_stamp = False
|
||||||
|
self.verified_worker = False
|
||||||
|
|
||||||
|
if self.verified_node:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
# This is both the stamp's client signature and interface metadata check; May raise InvalidNode
|
# This is both the stamp's client signature and interface metadata check; May raise InvalidNode
|
||||||
|
|
Loading…
Reference in New Issue