Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ckb-indexer/src/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export interface GetCellsResults {
export interface SearchKeyFilter {
sizeLimit?: number;
order?: Order;
lastCursor?: string | undefined;
lastCursor?: string;
}

export interface OutputToVerify {
Expand Down
4 changes: 2 additions & 2 deletions packages/neuron-wallet/src/database/address/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export default class AddressMeta implements Address {
balance?: string
version?: AddressVersion
description?: string
isImporting?: boolean | undefined
usedByAnyoneCanPay?: boolean | undefined
isImporting?: boolean
usedByAnyoneCanPay?: boolean

constructor(
walletId: string,
Expand Down
4 changes: 2 additions & 2 deletions packages/neuron-wallet/src/models/address.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export interface Address {
balance?: string
version?: AddressVersion
description?: string
isImporting?: boolean | undefined
usedByAnyoneCanPay?: boolean | undefined
isImporting?: boolean

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed by bc1d49f

usedByAnyoneCanPay?: boolean
}