From 6000a55d583832a71335310514688f1f6faed722 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 21 Nov 2023 15:00:14 +0100 Subject: towards a currency conversion integration test --- packages/taler-util/src/merchant-api-types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/taler-util/src/merchant-api-types.ts') diff --git a/packages/taler-util/src/merchant-api-types.ts b/packages/taler-util/src/merchant-api-types.ts index 9a7740088..999246597 100644 --- a/packages/taler-util/src/merchant-api-types.ts +++ b/packages/taler-util/src/merchant-api-types.ts @@ -44,8 +44,8 @@ import { TalerProtocolDuration, codecForTimestamp, TalerProtocolTimestamp, - WireAccount, - codecForWireAccount, + ExchangeWireAccount, + codecForExchangeWireAccount, codecForList, FacadeCredentials, } from "@gnu-taler/taler-util"; @@ -376,13 +376,13 @@ export interface MerchantReserveCreateConfirmation { reserve_pub: EddsaPublicKeyString; // Wire accounts of the exchange where to transfer the funds. - accounts: WireAccount[]; + accounts: ExchangeWireAccount[]; } export const codecForMerchantReserveCreateConfirmation = (): Codec => buildCodecForObject() - .property("accounts", codecForList(codecForWireAccount())) + .property("accounts", codecForList(codecForExchangeWireAccount())) .property("reserve_pub", codecForString()) .build("MerchantReserveCreateConfirmation"); -- cgit v1.2.3