aboutsummaryrefslogtreecommitdiff
path: root/src/types/talerTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/talerTypes.ts')
-rw-r--r--src/types/talerTypes.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types/talerTypes.ts b/src/types/talerTypes.ts
index b1a864132..10ee83743 100644
--- a/src/types/talerTypes.ts
+++ b/src/types/talerTypes.ts
@@ -654,7 +654,7 @@ export class WireFeesJson {
}
export class AccountInfo {
- url: string;
+ payto_uri: string;
master_sig: string;
}
@@ -886,7 +886,7 @@ export const codecForWireFeesJson = () =>
export const codecForAccountInfo = () =>
typecheckedCodec<AccountInfo>(
makeCodecForObject<AccountInfo>()
- .property("url", codecForString)
+ .property("payto_uri", codecForString)
.property("master_sig", codecForString)
.build("AccountInfo"),
);