diff --git a/TODO b/TODO index de85ee463..67db641b2 100644 --- a/TODO +++ b/TODO @@ -8,6 +8,7 @@ Crypto stuff: - Check all the tweak instructions. Better handling of corrupt blocks. +- Kill DB & restart. Network: - Crypto on network. TLS? @@ -20,16 +21,23 @@ General: - Better logging. - Colours. - Move over to new system. +- Remove block chain on protocol change (i.e. store protocol with block chain). + + +Robustness +- Remove aborts +- Recover from all exceptions. ### Gav For PoC2: +- Use mining state for nonce. Network: - NotInChain will be very bad for new peers - it'll run through until the genesis. - Check how many it has first. -BUG: need to discard transactions if nonce too old. +BUG: need to discard transactions if nonce too old, even when not mining. ### Marko @@ -40,12 +48,18 @@ Ubuntu builds ### Alex -Mac build +Mac build. +Mac build instructions. ### Eric -Windows build. +Windows XC build. +Windows XC build instructions. + +### Tim/Harv +Windows MSVC build. +Windows MSVC build instructions. LATER: diff --git a/alethzero/CMakeLists.txt b/alethzero/CMakeLists.txt index d8f4687fc..c4e80c2bf 100644 --- a/alethzero/CMakeLists.txt +++ b/alethzero/CMakeLists.txt @@ -45,7 +45,7 @@ if (APPLE) add_executable(${EXECUTEABLE} MACOSX_BUNDLE Main.ui ${SRC_LIST}) else () - set(EXECUTABLE alethzero) + set(EXECUTEABLE alethzero) add_executable(${EXECUTEABLE} Main.ui ${SRC_LIST}) endif ()