summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorChristian Blättler <blatc2@bfh.ch>2024-04-20 09:57:33 +0200
committerChristian Blättler <blatc2@bfh.ch>2024-04-20 09:57:33 +0200
commit85df04fdaafb17e085043ab542c332ed2ff00df2 (patch)
tree88632d7d933ae2fd2c5a55e87c49fd600a1545b5 /core
parente02fa845a6c57f64ddc611fdb451aef9a94e1260 (diff)
downloaddocs-85df04fdaafb17e085043ab542c332ed2ff00df2.tar.gz
docs-85df04fdaafb17e085043ab542c332ed2ff00df2.tar.bz2
docs-85df04fdaafb17e085043ab542c332ed2ff00df2.zip
update pay spec
Diffstat (limited to 'core')
-rw-r--r--core/api-merchant.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 6682ac17..f3801cbf 100644
--- a/core/api-merchant.rst
+++ b/core/api-merchant.rst
@@ -418,18 +418,18 @@ Making the payment
interface TokenUseSig {
- // Signature on ``TALER_DepositRequestPS`` with the public key of the
- // token being provisioned to the merchant.
+ // Signature on ``TALER_DepositRequestPS`` with the token use key of the
+ // token being used in this request.
token_sig: EddsaSignature;
- // Public key of the token being provisioned to the merchant.
+ // Token use public key.
token_pub: EddsaPublicKey;
- // Unblinded signature made by the token family public key of the merchant.
+ // Unblinded signature made by the token issue public key of the merchant.
ub_sig: UnblindedSignature;
- // The hash of the token family public key associated with this token.
- h_denom: HashCode;
+ // The hash of the token issue public key associated with this token.
+ h_issue: HashCode;
}