├── .gitignore ├── README.md ├── bitcoin.exe ├── libeay32.dll ├── license.txt ├── mingwm10.dll ├── readme.txt └── src ├── base58.h ├── bignum.h ├── db.cpp ├── db.h ├── headers.h ├── irc.cpp ├── irc.h ├── key.h ├── license.txt ├── main.cpp ├── main.h ├── makefile ├── makefile.vc ├── market.cpp ├── market.h ├── net.cpp ├── net.h ├── rc ├── addressbook16.bmp ├── addressbook16mask.bmp ├── addressbook20.bmp ├── addressbook20mask.bmp ├── bitcoin.ico ├── check.ico ├── send16.bmp ├── send16mask.bmp ├── send16masknoshadow.bmp ├── send20.bmp └── send20mask.bmp ├── readme.txt ├── script.cpp ├── script.h ├── serialize.h ├── sha.cpp ├── sha.h ├── ui.cpp ├── ui.h ├── ui.rc ├── uibase.cpp ├── uibase.h ├── uint256.h ├── uiproject.fbp ├── util.cpp └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/README.md -------------------------------------------------------------------------------- /bitcoin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/bitcoin.exe -------------------------------------------------------------------------------- /libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/libeay32.dll -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/license.txt -------------------------------------------------------------------------------- /mingwm10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/mingwm10.dll -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/readme.txt -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/bignum.h -------------------------------------------------------------------------------- /src/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/db.cpp -------------------------------------------------------------------------------- /src/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/db.h -------------------------------------------------------------------------------- /src/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/headers.h -------------------------------------------------------------------------------- /src/irc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/irc.cpp -------------------------------------------------------------------------------- /src/irc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/irc.h -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/key.h -------------------------------------------------------------------------------- /src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/license.txt -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/main.h -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/makefile -------------------------------------------------------------------------------- /src/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/makefile.vc -------------------------------------------------------------------------------- /src/market.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/market.cpp -------------------------------------------------------------------------------- /src/market.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/market.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/net.h -------------------------------------------------------------------------------- /src/rc/addressbook16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/addressbook16.bmp -------------------------------------------------------------------------------- /src/rc/addressbook16mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/addressbook16mask.bmp -------------------------------------------------------------------------------- /src/rc/addressbook20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/addressbook20.bmp -------------------------------------------------------------------------------- /src/rc/addressbook20mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/addressbook20mask.bmp -------------------------------------------------------------------------------- /src/rc/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/bitcoin.ico -------------------------------------------------------------------------------- /src/rc/check.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/check.ico -------------------------------------------------------------------------------- /src/rc/send16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/send16.bmp -------------------------------------------------------------------------------- /src/rc/send16mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/send16mask.bmp -------------------------------------------------------------------------------- /src/rc/send16masknoshadow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/send16masknoshadow.bmp -------------------------------------------------------------------------------- /src/rc/send20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/send20.bmp -------------------------------------------------------------------------------- /src/rc/send20mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/rc/send20mask.bmp -------------------------------------------------------------------------------- /src/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/readme.txt -------------------------------------------------------------------------------- /src/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/script.cpp -------------------------------------------------------------------------------- /src/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/script.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/sha.cpp -------------------------------------------------------------------------------- /src/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/sha.h -------------------------------------------------------------------------------- /src/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/ui.cpp -------------------------------------------------------------------------------- /src/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/ui.h -------------------------------------------------------------------------------- /src/ui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/ui.rc -------------------------------------------------------------------------------- /src/uibase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/uibase.cpp -------------------------------------------------------------------------------- /src/uibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/uibase.h -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/uiproject.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/uiproject.fbp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trottier/original-bitcoin/HEAD/src/util.h --------------------------------------------------------------------------------