update Txo type
This commit is contained in:
parent
eb40d2c058
commit
92a4263c90
3 changed files with 9 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
[ignore]
|
[ignore]
|
||||||
|
|
||||||
|
|
||||||
[include]
|
[include]
|
||||||
|
|
||||||
[libs]
|
[libs]
|
||||||
|
|
5
dist/flow-typed/Txo.js
vendored
5
dist/flow-typed/Txo.js
vendored
|
@ -10,6 +10,9 @@ declare type Txo = {
|
||||||
is_my_output: boolean,
|
is_my_output: boolean,
|
||||||
is_my_input: boolean,
|
is_my_input: boolean,
|
||||||
is_spent: boolean,
|
is_spent: boolean,
|
||||||
|
signing_channel?: {
|
||||||
|
channel_id: string,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
declare type TxoListParams = {
|
declare type TxoListParams = {
|
||||||
|
@ -21,4 +24,4 @@ declare type TxoListParams = {
|
||||||
is_not_my_input?: boolean,
|
is_not_my_input?: boolean,
|
||||||
is_not_my_output?: boolean,
|
is_not_my_output?: boolean,
|
||||||
is_spent?: boolean,
|
is_spent?: boolean,
|
||||||
}
|
};
|
||||||
|
|
5
flow-typed/Txo.js
vendored
5
flow-typed/Txo.js
vendored
|
@ -10,6 +10,9 @@ declare type Txo = {
|
||||||
is_my_output: boolean,
|
is_my_output: boolean,
|
||||||
is_my_input: boolean,
|
is_my_input: boolean,
|
||||||
is_spent: boolean,
|
is_spent: boolean,
|
||||||
|
signing_channel?: {
|
||||||
|
channel_id: string,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
declare type TxoListParams = {
|
declare type TxoListParams = {
|
||||||
|
@ -21,4 +24,4 @@ declare type TxoListParams = {
|
||||||
is_not_my_input?: boolean,
|
is_not_my_input?: boolean,
|
||||||
is_not_my_output?: boolean,
|
is_not_my_output?: boolean,
|
||||||
is_spent?: boolean,
|
is_spent?: boolean,
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in a new issue