commit 30ee3320c788129b258ed8b42f4fc63d28431e2f
parent 4dd60169bbf8cf1fa3c21b926853c664959acde0
Author: Florian Dold <florian.dold@gmail.com>
Date: Mon, 29 Feb 2016 03:26:51 +0100
use exchange instead of mint in text
Diffstat:
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/extension/pages/confirm-create-reserve.tsx b/extension/pages/confirm-create-reserve.tsx
@@ -192,7 +192,7 @@ function view(ctrl: Controller) {
ctrl.callbackUrl),
disabled: !ctrl.isValidMint
},
- "Confirm mint selection");
+ "Confirm exchange selection");
if (ctrl.statusString) {
mx("p", ctrl.statusString);
@@ -269,8 +269,8 @@ function getSuggestedMint(currency: string): Promise<string> {
// TODO: make this request go to the wallet backend
// Right now, this is a stub.
const defaultMint = {
- "KUDOS": "http://mint.demo.taler.net",
- "PUDOS": "http://mint.test.taler.net",
+ "KUDOS": "http://exchange.demo.taler.net",
+ "PUDOS": "http://exchange.test.taler.net",
};
let mint = defaultMint[currency];
@@ -302,4 +302,4 @@ export function main() {
document.body.innerText = `Fatal error: "${e.message}".`;
console.error(`got backend error "${e.message}"`);
});
-}
-\ No newline at end of file
+}