taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 9f1f2ce3d10a8f2468368ef79d38554f965aa6a9
parent 51e5c43506801e60d8c90ba419a27583d8a1ce60
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue,  1 Mar 2016 19:49:09 +0100

add author

Diffstat:
Mlib/wallet/cryptoApi.ts | 9+++++++--
Mlib/wallet/cryptoLib.ts | 2+-
Mlib/wallet/helpers.ts | 2++
Mlib/wallet/http.ts | 3+--
Mlib/wallet/types.ts | 2++
Mlib/wallet/wxApi.ts | 4++--
6 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/lib/wallet/cryptoApi.ts b/lib/wallet/cryptoApi.ts @@ -15,6 +15,12 @@ */ +/** + * API to access the Taler crypto worker thread. + * @author Florian Dold + */ + + import {PreCoin} from "./types"; import {Reserve} from "./types"; import {Denomination} from "./types"; @@ -90,4 +96,4 @@ export class CryptoApi { rsaUnblind(sig: string, bk: string, pk: string): Promise<string> { return this.doRpc("rsaUnblind", sig, bk, pk); } -} -\ No newline at end of file +} diff --git a/lib/wallet/cryptoLib.ts b/lib/wallet/cryptoLib.ts @@ -14,7 +14,6 @@ TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> */ -import {Denomination} from "./types"; /** * Web worker for crypto operations. * @author Florian Dold @@ -28,6 +27,7 @@ import create = chrome.alarms.create; import {Offer} from "./wallet"; import {CoinWithDenom} from "./wallet"; import {CoinPaySig} from "./types"; +import {Denomination} from "./types"; export function main(worker: Worker) { diff --git a/lib/wallet/helpers.ts b/lib/wallet/helpers.ts @@ -18,6 +18,8 @@ /** * Smaller helper functions that do not depend * on the emscripten machinery. + * + * @author Florian Dold */ import {AmountJson} from "./types"; diff --git a/lib/wallet/http.ts b/lib/wallet/http.ts @@ -81,4 +81,4 @@ export class RequestException { constructor(detail) { } -} -\ No newline at end of file +} diff --git a/lib/wallet/types.ts b/lib/wallet/types.ts @@ -21,6 +21,8 @@ * are defined in types.ts are intended to be used by components * that do not depend on the whole wallet implementation (which depends on * emscripten). + * + * @author Florian Dold */ import {Checkable} from "./checkable"; diff --git a/lib/wallet/wxApi.ts b/lib/wallet/wxApi.ts @@ -19,6 +19,7 @@ import {ReserveCreationInfo} from "./types"; /** * Interface to the wallet through WebExtension messaging. + * @author Florian Dold */ @@ -37,4 +38,4 @@ export function getReserveCreationInfo(baseUrl: string, resolve(resp); }); }); -} -\ No newline at end of file +}