mirror of
https://git.wownero.com/wownero/YellWOWPages.git
synced 2024-08-15 01:03:25 +00:00
Merge pull request 'Address format check' (#9) from muchwowmining/YellWOWPages:master into master
Reviewed-on: https://git.wownero.com/wownero/YellWOWPages/pulls/9
This commit is contained in:
commit
5fc91af0a4
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
from quart import render_template, request, redirect, url_for, jsonify, Blueprint, abort, flash, send_from_directory, session
|
||||
import re
|
||||
|
||||
from yellow import login_required
|
||||
from yellow.factory import openid
|
||||
|
@ -36,7 +37,7 @@ async def dashboard_address_post():
|
|||
# get FORM POST value 'address'
|
||||
form = await request.form
|
||||
address = form.get('address')
|
||||
if len(address) != 97:
|
||||
if not bool(re.match(r'^(WW)\\d[0-9A-Za-z]{94}$', address)):
|
||||
raise Exception("Please submit a WOW address")
|
||||
|
||||
# update user
|
||||
|
|
Loading…
Reference in a new issue