From f51f9d9be1e265a267bd61af59927edb6f0f35b4 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 21 Aug 2019 11:33:04 +0200 Subject: [PATCH] core: one more change to previous commit --- core/SConscript.firmware | 2 +- core/SConscript.unix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/SConscript.firmware b/core/SConscript.firmware index cb9e1a83a1..68b6ea7a53 100644 --- a/core/SConscript.firmware +++ b/core/SConscript.firmware @@ -439,7 +439,7 @@ if True: SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/management/*.py')) SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/management/*/*.py')) SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/wallet/*.py')) - SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/wallet/sign_tx/*.py')) + SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/wallet/*/*.py')) if True: SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/binance/*.py')) diff --git a/core/SConscript.unix b/core/SConscript.unix index 42cbba3af0..4bc8db7f51 100644 --- a/core/SConscript.unix +++ b/core/SConscript.unix @@ -402,7 +402,7 @@ if ARGUMENTS.get('TREZOR_EMULATOR_FROZEN', 0): SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/management/*.py')) SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/management/*/*.py')) SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/wallet/*.py')) - SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/wallet/sign_tx/*.py')) + SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/wallet/*/*.py')) if True: SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/binance/*.py'))