Commit graph

15 commits

Author SHA1 Message Date
Dave Collins f1c807231d Add TravisCI build status badge to README.md. 2013-12-08 20:44:06 -06:00
Dave Collins 786409d06e Update README.md now that Go 1.2 has been released. 2013-12-02 09:49:43 -06:00
Dave Collins 45732c99fb Allow btcd to run as a Windows service.
This commit modifies btcd to run cleanly as a Windows service.  btcd is
intended to be a long running process that stays synchronized with the
bitcoin block chain and provides chain services to multiple users.  It
follows that a service is the best option on Windows for this
functionality.

A few key points are:

- Supports graceful shutdown via the service stop/shutdown commands
- Integrates cleanly with the Windows event log
- Adds a new /s flag that can be used to install/remove/start/stop the
  service

One outstanding issue is that the application data directory is currently
user specific which means, by default, if you start btcd as a user, the
same data won't be used as when it's running as a service.  This needs to
be resovled.  The most likely approach will be to put all data into the
common appdata directory Windows provides, but it will require some
additional work to deal with permissions properly as user processes can't
write there by default.

Closes #42.
2013-11-25 18:36:11 -06:00
John C. Vernaleo 3f37e881dc Remove workaround for certs on go1.1.2.
btcd now requires go1.2.  A note to that effect is in README.md.
2013-11-20 15:34:37 -05:00
Dave Collins 7846b2f4e2 Update README.md TODO to remove 32-bit MSI.
32-bit MSIs will now be available for all future releases.
2013-10-22 17:05:43 -05:00
David Hill d6adef91f8 Announce our mailing lists 2013-10-15 12:16:17 -04:00
Dave Collins 2ad0d34d27 Add updating instruction to README.md. 2013-10-08 13:31:01 -05:00
Dave Collins c28c6e7636 Correct blog link in README.md. 2013-10-05 02:51:12 -05:00
Dave Collins 19a238825b Fix typo in README.md 2013-10-05 02:48:03 -05:00
Dave Collins 4864298884 Update README. 2013-10-04 23:02:00 -05:00
Dave Collins 78e9b94d93 Implement transaction pool and relay.
This commit is a rather large one which implements transaction pool and
relay according to the protocol rules of the reference implementation.
It makes use of btcchain to ensure the transactions are valid for the
block chain and includes several stricter checks which determine if they
are "standard" or not before admitting them into the pool and relaying
them.

There are still a few TODOs around the more strict rules which determine
which transactions are willing to be mined, but the core checks which
are imperative (everything except the all of the "standard" checks really)
to operate as a good citizen on the bitcoin network are in place.
2013-10-03 22:31:54 -05:00
Dave Collins b58787f87a Remove block relay from TODO list. 2013-09-12 09:15:38 -05:00
Dave Collins 3525552140 Update TODO list in README.md. 2013-09-09 11:01:05 -05:00
Dave Collins 3f54e4199f Initial import. 2013-08-06 19:17:05 -05:00
Dave Collins c59a86c467 Initial commit. 2013-08-06 11:32:43 -05:00