[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-wallet-core] 02/02: exchange protocol changes
From: |
gnunet |
Subject: |
[taler-wallet-core] 02/02: exchange protocol changes |
Date: |
Sun, 10 Jan 2021 23:59:16 +0100 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository wallet-core.
commit 57d7c988b3f333949d6b2c8da5585dc492932b57
Author: Florian Dold <florian@dold.me>
AuthorDate: Sun Jan 10 23:59:11 2021 +0100
exchange protocol changes
---
.../taler-wallet-core/src/crypto/workers/cryptoImplementation.ts | 1 -
packages/taler-wallet-core/src/types/ReserveTransaction.ts | 5 +++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/packages/taler-wallet-core/src/crypto/workers/cryptoImplementation.ts
b/packages/taler-wallet-core/src/crypto/workers/cryptoImplementation.ts
index 9b703e2c..d8045f72 100644
--- a/packages/taler-wallet-core/src/crypto/workers/cryptoImplementation.ts
+++ b/packages/taler-wallet-core/src/crypto/workers/cryptoImplementation.ts
@@ -533,7 +533,6 @@ export class CryptoImplementation {
const coinEvHash = hash(decodeCrock(coinEv));
const coinLink = buildSigPS(SignaturePurpose.WALLET_COIN_LINK)
.put(decodeCrock(newDenomHash))
- .put(decodeCrock(oldCoinPub))
.put(decodeCrock(transferPub))
.put(coinEvHash)
.build();
diff --git a/packages/taler-wallet-core/src/types/ReserveTransaction.ts
b/packages/taler-wallet-core/src/types/ReserveTransaction.ts
index 75d01dff..6847d837 100644
--- a/packages/taler-wallet-core/src/types/ReserveTransaction.ts
+++ b/packages/taler-wallet-core/src/types/ReserveTransaction.ts
@@ -29,6 +29,7 @@ import {
codecForConstString,
buildCodecForUnion,
Codec,
+ codecForNumber,
} from "../util/codec";
import {
AmountString,
@@ -92,7 +93,7 @@ export interface ReserveCreditTransaction {
/**
* Transfer details uniquely identifying the transfer.
*/
- wire_reference: string;
+ wire_reference: number;
/**
* Timestamp of the incoming wire transfer.
@@ -200,7 +201,7 @@ export const codecForReserveCreditTransaction = (): Codec<
.property("amount", codecForString())
.property("sender_account_url", codecForString())
.property("timestamp", codecForTimestamp)
- .property("wire_reference", codecForString())
+ .property("wire_reference", codecForNumber())
.property("type", codecForConstString(ReserveTransactionType.Credit))
.build("ReserveCreditTransaction");
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.