Browse Source

Avoid enabling JITVM when not compiled in.

cl-refactor
Gav Wood 10 years ago
parent
commit
f8740e8e4f
  1. 4
      alethzero/MainWin.cpp

4
alethzero/MainWin.cpp

@ -240,6 +240,10 @@ Main::Main(QWidget *parent) :
#if !ETH_FATDB #if !ETH_FATDB
removeDockWidget(ui->dockWidget_accounts); removeDockWidget(ui->dockWidget_accounts);
#endif
#if !ETH_EVMJIT
ui->jitvm->setEnabled(false);
ui->jitvm->setChecked(false);
#endif #endif
installWatches(); installWatches();
startTimer(100); startTimer(100);

Loading…
Cancel
Save