File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ interface ExtraData {
20
20
"Contract Information" ?: string ;
21
21
}
22
22
23
+ export const NO_TIMEOUT_VALUE = 8640000000000000 ;
24
+
23
25
export interface MetaEvidence {
24
26
aliases : Record < string , string > ;
25
27
amount : string ;
Original file line number Diff line number Diff line change 1
1
import type { EscrowToken } from "model/EscrowToken" ;
2
- import type { MetaEvidence } from "model/MetaEvidence" ;
2
+ import { NO_TIMEOUT_VALUE , type MetaEvidence } from "model/MetaEvidence" ;
3
3
import { parseZonedDateTime } from "@internationalized/date" ;
4
4
import { ipfsPost } from "./ipfs" ;
5
5
@@ -61,7 +61,7 @@ export async function uploadMetaEvidence({
61
61
receiver : receiverAddress ,
62
62
sender : senderAddress ,
63
63
subCategory : escrowType ,
64
- timeout : 0 , //No automatic payments yet
64
+ timeout : NO_TIMEOUT_VALUE , //No automatic payments yet
65
65
title : title ,
66
66
token : {
67
67
address : token . address ,
You can’t perform that action at this time.
0 commit comments