summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/types/talerTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/types/talerTypes.ts')
-rw-r--r--packages/taler-wallet-core/src/types/talerTypes.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/types/talerTypes.ts b/packages/taler-wallet-core/src/types/talerTypes.ts
index b17c101b0..80aa1fe37 100644
--- a/packages/taler-wallet-core/src/types/talerTypes.ts
+++ b/packages/taler-wallet-core/src/types/talerTypes.ts
@@ -257,7 +257,7 @@ export class AuditorHandle {
/**
* Master public signing key of the auditor.
*/
- master_pub: string;
+ auditor_pub: string;
/**
* Base URL of the auditor.
@@ -1057,7 +1057,7 @@ export const codecForExchangeHandle = (): Codec<ExchangeHandle> =>
export const codecForAuditorHandle = (): Codec<AuditorHandle> =>
buildCodecForObject<AuditorHandle>()
.property("name", codecForString())
- .property("master_pub", codecForString())
+ .property("auditor_pub", codecForString())
.property("url", codecForString())
.build("AuditorHandle");