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'))