diff options
Diffstat (limited to 'scraper/client/actions.js')
| -rw-r--r-- | scraper/client/actions.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scraper/client/actions.js b/scraper/client/actions.js index 1f7baf97..6c4e16b2 100644 --- a/scraper/client/actions.js +++ b/scraper/client/actions.js @@ -33,11 +33,11 @@ export const postAddress = data => dispatch => { } export const getVerification = sha256 => dispatch => ( - api(dispatch, get, 'address', '/api/verify/' + sha256, {}) + api(dispatch, get, 'verify', '/api/verify/' + sha256, {}) ) export const postVerification = data => dispatch => ( - api(dispatch, post, 'address', '/api/verify/add', data) + api(dispatch, post, 'verify', '/api/verify/add', data) ) |
