From e29d288d603776c1523d210d9e1e3d36903e29a3 Mon Sep 17 00:00:00 2001 From: Alexis Hernandez Date: Sun, 11 Mar 2018 12:55:08 -0600 Subject: [PATCH] web-ui: Fix url for retrieving transactions 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 33b2da6..90cd852 100644 --- a/web-ui/src/app/services/transactions.service.ts +++ b/web-ui/src/app/services/transactions.service.ts @@ -16,7 +16,7 @@ export class TransactionsService { constructor(private http: HttpClient) { } get(txid: string): Observable { - const url = this.baseUrl + txid; + const url = `${this.baseUrl}/${txid}`; return this.http.get(url); } }