Zerocoin / libzerocoin

Zerocoin: C++ lib for anonymous extension to bitcoin
http://zerocoin.org/
MIT License
177 stars 53 forks source link

Replace uint with unsigned int and remove trailing spaces #3

Closed jhasse closed 11 years ago

jhasse commented 11 years ago

MinGW doesn't include the non-standard data type uint, see http://sourceforge.net/p/mingw/bugs/1381/

I replaced uint with unsigned and also deleted trailing spaces in the affected files.

matthewdgreen commented 11 years ago

I've manually updated the code to replace uint with uint32_t so that we're consistent with the rest of the code. Will that work? I'll fix the spaces in another commit. Thanks!

jhasse commented 11 years ago

Yes, uint32_t also works :)