Browse Source

web-ui: Fix method name on TransactionsService

scalafmt-draft
Alexis Hernandez 7 years ago
parent
commit
bbb17ed5ad
  1. 2
      web-ui/src/app/services/transactions.service.ts

2
web-ui/src/app/services/transactions.service.ts

@ -15,7 +15,7 @@ export class TransactionsService {
constructor(private http: HttpClient) { }
verifyEmail(txid: string): Observable<any> {
get(txid: string): Observable<any> {
const url = this.baseUrl + txid;
return this.http.get(url);
}

Loading…
Cancel
Save