tsc fixes

This commit is contained in:
nicosampler 2020-08-07 08:21:54 -03:00
parent b119f3e88f
commit e39e9bbc31
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ export const makeTransaction = Record<TransactionProps>({
blockNumber: 0, blockNumber: 0,
cancelled: false, cancelled: false,
confirmations: List([]), confirmations: List([]),
created: false, created: '',
creator: '', creator: '',
creationTx: false, creationTx: false,
customTx: false, customTx: false,

View File

@ -38,7 +38,7 @@ export type TransactionProps = {
blockNumber?: number | null blockNumber?: number | null
cancelled?: boolean cancelled?: boolean
confirmations: List<Confirmation> confirmations: List<Confirmation>
created: boolean created: string
creator: string creator: string
creationTx: boolean creationTx: boolean
customTx: boolean customTx: boolean