add txo exclude internal transfers constant #301

Merged
jessopb merged 1 commit from fix-transactionPageTweaks into master 2020-04-15 19:43:28 +02:00
2 changed files with 3 additions and 1 deletions

2
dist/bundle.es.js vendored
View file

@ -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

View file

@ -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;