From ee29e9a024f8a24e7eb70ecc901bb05ff3d4a87d Mon Sep 17 00:00:00 2001 From: jessop Date: Thu, 16 Apr 2020 21:08:11 -0400 Subject: [PATCH] add is_my_input_or_output constant --- dist/bundle.es.js | 2 ++ src/constants/txo_list.js | 1 + 2 files changed, 3 insertions(+) diff --git a/dist/bundle.es.js b/dist/bundle.es.js index f4adcc3..9708fd5 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -797,6 +797,7 @@ const IS_MY_INPUT = 'is_my_input'; const IS_MY_OUTPUT = 'is_my_output'; const IS_NOT_MY_INPUT = 'is_not_my_input'; const IS_NOT_MY_OUTPUT = 'is_not_my_output'; // use to further distinguish payments to self / from self. +const IS_MY_INPUT_OR_OUTPUT = 'is_my_input_or_output'; const EXCLUDE_INTERNAL_TRANSFERS = 'exclude_internal_transfers'; // sdk unique types @@ -830,6 +831,7 @@ var txo_list = /*#__PURE__*/Object.freeze({ IS_MY_OUTPUT: IS_MY_OUTPUT, IS_NOT_MY_INPUT: IS_NOT_MY_INPUT, IS_NOT_MY_OUTPUT: IS_NOT_MY_OUTPUT, + IS_MY_INPUT_OR_OUTPUT: IS_MY_INPUT_OR_OUTPUT, EXCLUDE_INTERNAL_TRANSFERS: EXCLUDE_INTERNAL_TRANSFERS, OTHER: OTHER$1, STREAM: STREAM, diff --git a/src/constants/txo_list.js b/src/constants/txo_list.js index afd28f9..b702f34 100644 --- a/src/constants/txo_list.js +++ b/src/constants/txo_list.js @@ -26,6 +26,7 @@ export const IS_MY_INPUT = 'is_my_input'; export const IS_MY_OUTPUT = 'is_my_output'; export const IS_NOT_MY_INPUT = 'is_not_my_input'; export const IS_NOT_MY_OUTPUT = 'is_not_my_output'; // use to further distinguish payments to self / from self. +export const IS_MY_INPUT_OR_OUTPUT = 'is_my_input_or_output'; export const EXCLUDE_INTERNAL_TRANSFERS = 'exclude_internal_transfers'; // sdk unique types