Skip to content

Commit

Permalink
Merge pull request #38 from gnosischain/feature/improve-captcha
Browse files Browse the repository at this point in the history
Log captcha verify response
  • Loading branch information
giacomognosis authored Apr 10, 2024
2 parents 3b016fa + c349e64 commit dd0a132
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/api/services/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ def captcha_validation(self):
# check hcatpcha
catpcha_verified = captcha_verify(
self.request_data.get('captcha'),
current_app.config['CAPTCHA_VERIFY_ENDPOINT'], current_app.config['CAPTCHA_SECRET_KEY'],
current_app.config['CAPTCHA_VERIFY_ENDPOINT'],
current_app.config['CAPTCHA_SECRET_KEY'],
self.ip_address,
current_app.config['CAPTCHA_SITE_KEY']
)
Expand Down

0 comments on commit dd0a132

Please sign in to comment.