update Txo type

This commit is contained in:
Sean Yesmunt 2020-12-15 15:45:52 -05:00
parent eb40d2c058
commit 92a4263c90
3 changed files with 9 additions and 2 deletions

View file

@ -1,5 +1,6 @@
[ignore]
[include]
[libs]

View file

@ -10,6 +10,9 @@ declare type Txo = {
is_my_output: boolean,
is_my_input: boolean,
is_spent: boolean,
signing_channel?: {
channel_id: string,
},
};
declare type TxoListParams = {
@ -21,4 +24,4 @@ declare type TxoListParams = {
is_not_my_input?: boolean,
is_not_my_output?: boolean,
is_spent?: boolean,
}
};

5
flow-typed/Txo.js vendored
View file

@ -10,6 +10,9 @@ declare type Txo = {
is_my_output: boolean,
is_my_input: boolean,
is_spent: boolean,
signing_channel?: {
channel_id: string,
},
};
declare type TxoListParams = {
@ -21,4 +24,4 @@ declare type TxoListParams = {
is_not_my_input?: boolean,
is_not_my_output?: boolean,
is_spent?: boolean,
}
};