summaryrefslogtreecommitdiff
path: root/wallet/wallet-core.md
diff options
context:
space:
mode:
Diffstat (limited to 'wallet/wallet-core.md')
-rw-r--r--wallet/wallet-core.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/wallet/wallet-core.md b/wallet/wallet-core.md
index 0c538b4e..e5bed3cf 100644
--- a/wallet/wallet-core.md
+++ b/wallet/wallet-core.md
@@ -1470,7 +1470,7 @@ export type InitiatePeerPushPaymentOp = {
```
```typescript
export interface InitiatePeerPushPaymentRequest {
- amount: AmountString;
+ exchangeBaseUrl?: string;
partialContractTerms: PeerContractTerms;
}
@@ -1520,7 +1520,7 @@ export interface CheckPeerPushPaymentRequest {
```
```typescript
export interface CheckPeerPushPaymentResponse {
- contractTerms: any;
+ contractTerms: PeerContractTerms;
amount: AmountString;
peerPushPaymentIncomingId: string;
}
@@ -1569,8 +1569,7 @@ export interface InitiatePeerPullPaymentRequest {
* FIXME: Make this optional?
*/
exchangeBaseUrl: string;
- amount: AmountString;
- partialContractTerms: any;
+ partialContractTerms: PeerContractTerms;
}
```
@@ -1607,7 +1606,7 @@ export interface CheckPeerPullPaymentRequest {
```
```typescript
export interface CheckPeerPullPaymentResponse {
- contractTerms: any;
+ contractTerms: PeerContractTerms;
amount: AmountString;
peerPullPaymentIncomingId: string;
}