Browse Source

Fix type in cmake.

cl-refactor
Gav Wood 11 years ago
parent
commit
b59b0ac0e4
  1. 20
      TODO
  2. 2
      alethzero/CMakeLists.txt

20
TODO

@ -8,6 +8,7 @@ Crypto stuff:
- Check all the tweak instructions. - Check all the tweak instructions.
Better handling of corrupt blocks. Better handling of corrupt blocks.
- Kill DB & restart.
Network: Network:
- Crypto on network. TLS? - Crypto on network. TLS?
@ -20,16 +21,23 @@ General:
- Better logging. - Better logging.
- Colours. - Colours.
- Move over to new system. - 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 ### Gav
For PoC2: For PoC2:
- Use mining state for nonce.
Network: Network:
- NotInChain will be very bad for new peers - it'll run through until the genesis. - NotInChain will be very bad for new peers - it'll run through until the genesis.
- Check how many it has first. - 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 ### Marko
@ -40,12 +48,18 @@ Ubuntu builds
### Alex ### Alex
Mac build Mac build.
Mac build instructions.
### Eric ### Eric
Windows build. Windows XC build.
Windows XC build instructions.
### Tim/Harv
Windows MSVC build.
Windows MSVC build instructions.
LATER: LATER:

2
alethzero/CMakeLists.txt

@ -45,7 +45,7 @@ if (APPLE)
add_executable(${EXECUTEABLE} MACOSX_BUNDLE Main.ui ${SRC_LIST}) add_executable(${EXECUTEABLE} MACOSX_BUNDLE Main.ui ${SRC_LIST})
else () else ()
set(EXECUTABLE alethzero) set(EXECUTEABLE alethzero)
add_executable(${EXECUTEABLE} Main.ui ${SRC_LIST}) add_executable(${EXECUTEABLE} Main.ui ${SRC_LIST})
endif () endif ()

Loading…
Cancel
Save