mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 06:21:37 +01:00
fix: ๐ max int error
This commit is contained in:
parent
83dc6a1102
commit
d10b2120b5
3 changed files with 5 additions and 5 deletions
|
@ -39,7 +39,7 @@ export const transactionTypes = gql`
|
|||
safe_fee: Int!
|
||||
safe_tokens: Int
|
||||
secret: String!
|
||||
tokens: Int!
|
||||
tokens: String!
|
||||
type: String!
|
||||
date: String!
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ export const transactionTypes = gql`
|
|||
received_mtokens: String!
|
||||
request: String
|
||||
secret: String!
|
||||
tokens: Int!
|
||||
tokens: String!
|
||||
type: String!
|
||||
date: String!
|
||||
}
|
||||
|
|
|
@ -953,7 +953,7 @@ Object {
|
|||
"received_mtokens": "string",
|
||||
"request": "string",
|
||||
"secret": "string",
|
||||
"tokens": 1000,
|
||||
"tokens": "1000",
|
||||
"type": "invoice",
|
||||
},
|
||||
],
|
||||
|
|
|
@ -862,7 +862,7 @@ export type PaymentType = {
|
|||
safe_fee: Scalars['Int'];
|
||||
safe_tokens?: Maybe<Scalars['Int']>;
|
||||
secret: Scalars['String'];
|
||||
tokens: Scalars['Int'];
|
||||
tokens: Scalars['String'];
|
||||
type: Scalars['String'];
|
||||
date: Scalars['String'];
|
||||
};
|
||||
|
@ -885,7 +885,7 @@ export type InvoiceType = {
|
|||
received_mtokens: Scalars['String'];
|
||||
request?: Maybe<Scalars['String']>;
|
||||
secret: Scalars['String'];
|
||||
tokens: Scalars['Int'];
|
||||
tokens: Scalars['String'];
|
||||
type: Scalars['String'];
|
||||
date: Scalars['String'];
|
||||
};
|
||||
|
|
Loadingโฆ
Add table
Reference in a new issue