v0.2.7
This commit is contained in:
parent
55a1b25ea2
commit
2b1e88737f
@ -4,8 +4,8 @@
|
|||||||
"name": "GNU Taler Wallet (git)",
|
"name": "GNU Taler Wallet (git)",
|
||||||
"description": "Privacy preserving and transparent payments",
|
"description": "Privacy preserving and transparent payments",
|
||||||
"author": "GNU Taler Developers",
|
"author": "GNU Taler Developers",
|
||||||
"version": "0.6.43",
|
"version": "0.6.44",
|
||||||
"version_name": "0.2.6",
|
"version_name": "0.2.7",
|
||||||
|
|
||||||
"minimum_chrome_version": "51",
|
"minimum_chrome_version": "51",
|
||||||
"minimum_opera_version": "36",
|
"minimum_opera_version": "36",
|
||||||
|
@ -327,7 +327,7 @@ const builtinCurrencies: CurrencyRecord[] = [
|
|||||||
{
|
{
|
||||||
auditors: [
|
auditors: [
|
||||||
{
|
{
|
||||||
auditorPub: "XN9KMN5G2KGPCAN0E89MM5HE8FV4WBWA9KDTMTDR817MWBCYA7H0",
|
auditorPub: "BW9DC48PHQY4NH011SHHX36DZZ3Q22Y6X7FZ1VD1CMZ2PTFZ6PN0",
|
||||||
baseUrl: "https://auditor.demo.taler.net/",
|
baseUrl: "https://auditor.demo.taler.net/",
|
||||||
expirationStamp: (new Date(2027, 1)).getTime(),
|
expirationStamp: (new Date(2027, 1)).getTime(),
|
||||||
},
|
},
|
||||||
@ -336,15 +336,6 @@ const builtinCurrencies: CurrencyRecord[] = [
|
|||||||
fractionalDigits: 2,
|
fractionalDigits: 2,
|
||||||
name: "KUDOS",
|
name: "KUDOS",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
auditors: [
|
|
||||||
],
|
|
||||||
exchanges: [
|
|
||||||
{ baseUrl: "https://exchange.test.taler.net/", priority: 0 },
|
|
||||||
],
|
|
||||||
fractionalDigits: 2,
|
|
||||||
name: "PUDOS",
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
@ -1503,13 +1494,12 @@ export class Wallet {
|
|||||||
.toArray()
|
.toArray()
|
||||||
) || [];
|
) || [];
|
||||||
|
|
||||||
|
const trustedAuditorPubs = [];
|
||||||
const currencyRecord = await this.q().get<CurrencyRecord>(Stores.currencies, amount.currency);
|
const currencyRecord = await this.q().get<CurrencyRecord>(Stores.currencies, amount.currency);
|
||||||
if (!currencyRecord) {
|
if (currencyRecord) {
|
||||||
throw Error("currency not found");
|
trustedAuditorPubs.push(...currencyRecord.auditors.map((a) => a.auditorPub));
|
||||||
}
|
}
|
||||||
|
|
||||||
const trustedAuditorPubs = currencyRecord.auditors.map((a) => a.auditorPub);
|
|
||||||
|
|
||||||
const ret: ReserveCreationInfo = {
|
const ret: ReserveCreationInfo = {
|
||||||
earliestDepositExpiration,
|
earliestDepositExpiration,
|
||||||
exchangeInfo,
|
exchangeInfo,
|
||||||
|
Loading…
Reference in New Issue
Block a user