summaryrefslogtreecommitdiff
path: root/packages/taler-util/src
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-03-07 20:44:18 +0100
committerFlorian Dold <florian@dold.me>2022-03-07 20:44:18 +0100
commit0323868e10ca1fc5d3e10ad9e6866b986f552680 (patch)
tree1545d12e40bf5caabecd006d842ad05339624e48 /packages/taler-util/src
parent0290c5fd379a4b4262d8835d4131b7c4e8a2f2f2 (diff)
downloadwallet-core-0323868e10ca1fc5d3e10ad9e6866b986f552680.tar.gz
wallet-core-0323868e10ca1fc5d3e10ad9e6866b986f552680.tar.bz2
wallet-core-0323868e10ca1fc5d3e10ad9e6866b986f552680.zip
fix tipping
Diffstat (limited to 'packages/taler-util/src')
-rw-r--r--packages/taler-util/src/talerTypes.ts13
1 files changed, 1 insertions, 12 deletions
diff --git a/packages/taler-util/src/talerTypes.ts b/packages/taler-util/src/talerTypes.ts
index 4581f0b6a..fa544aeb6 100644
--- a/packages/taler-util/src/talerTypes.ts
+++ b/packages/taler-util/src/talerTypes.ts
@@ -609,7 +609,7 @@ export interface TipPlanchetDetail {
/**
* Coin's blinded public key.
*/
- coin_ev: string;
+ coin_ev: CoinEnvelope;
}
/**
@@ -1307,17 +1307,6 @@ export const codecForMerchantRefundResponse =
.property("refunds", codecForList(codecForMerchantRefundPermission()))
.build("MerchantRefundResponse");
-export const codecForMerchantBlindSigWrapperV1 =
- (): Codec<MerchantBlindSigWrapperV1> =>
- buildCodecForObject<MerchantBlindSigWrapperV1>()
- .property("blind_sig", codecForString())
- .build("BlindSigWrapper");
-
-export const codecForMerchantTipResponseV1 = (): Codec<MerchantTipResponseV1> =>
- buildCodecForObject<MerchantTipResponseV1>()
- .property("blind_sigs", codecForList(codecForMerchantBlindSigWrapperV1()))
- .build("MerchantTipResponseV1");
-
export const codecForBlindSigWrapperV2 = (): Codec<MerchantBlindSigWrapperV2> =>
buildCodecForObject<MerchantBlindSigWrapperV2>()
.property("blind_sig", codecForBlindedDenominationSignature())