From bbb17ed5ad5e976f6c4cc549453326015f19d8fa Mon Sep 17 00:00:00 2001 From: Alexis Hernandez Date: Sun, 11 Mar 2018 12:41:03 -0600 Subject: [PATCH] web-ui: Fix method name on TransactionsService --- web-ui/src/app/services/transactions.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-ui/src/app/services/transactions.service.ts b/web-ui/src/app/services/transactions.service.ts index 053c289..33b2da6 100644 --- a/web-ui/src/app/services/transactions.service.ts +++ b/web-ui/src/app/services/transactions.service.ts @@ -15,7 +15,7 @@ export class TransactionsService { constructor(private http: HttpClient) { } - verifyEmail(txid: string): Observable { + get(txid: string): Observable { const url = this.baseUrl + txid; return this.http.get(url); }