Guest User

Untitled

a guest
Jul 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. if(empty($address))
  2.  
  3. return Redirect::back()->withInput()->with('error','Bitcoin address invalid!');
  4.  
  5. $validator = $wallet->validateAddress($address);
  6.  
  7. if(!$validator['isvalid'])
  8.  
  9. return Redirect::back()->withInput()->with('error','Bitcoin address invalid!');
Add Comment
Please, Sign In to add comment