From 387aa8d0a8e9383f4f27c991bfd9c37fdb14a779 Mon Sep 17 00:00:00 2001 From: jessop Date: Wed, 15 Apr 2020 13:36:29 -0400 Subject: [PATCH] add txo exclude internal transfers constant --- dist/bundle.es.js | 2 ++ src/constants/txo_list.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 7f8640b..fdebb3a 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 EXCLUDE_INTERNAL_TRANSFERS = 'exclude_internal_transfers'; // sdk unique types const OTHER$1 = 'other'; @@ -829,6 +830,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, + EXCLUDE_INTERNAL_TRANSFERS: EXCLUDE_INTERNAL_TRANSFERS, OTHER: OTHER$1, STREAM: STREAM, PAGE_SIZE_DEFAULT: PAGE_SIZE_DEFAULT diff --git a/src/constants/txo_list.js b/src/constants/txo_list.js index b143bef..afd28f9 100644 --- a/src/constants/txo_list.js +++ b/src/constants/txo_list.js @@ -26,10 +26,10 @@ 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 EXCLUDE_INTERNAL_TRANSFERS = 'exclude_internal_transfers'; // sdk unique types export const OTHER = 'other'; export const STREAM = 'stream'; export const PAGE_SIZE_DEFAULT = 20; -