Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #334

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
##Armory
## Armory

**Created by Alan Reiner on 13 July, 2011**

Expand All @@ -8,18 +8,18 @@ Multi-signature transactions are accommodated under-the-hood about 80%, and will

**Armory has no independent networking components built in.** Instead, it relies on on the Satoshi client to securely connect to peers, validate blockchain data, and broadcast transactions for us. Although it was initially planned to cut the umbilical cord to the Satoshi client and implement independent networking, it has turned out to be an inconvenience worth having. Reimplementing all the networking code would be fraught with bugs, security holes, and possible blockchain forking. The reliance on Bitcoin-Qt right now is actually making Armory more secure!

##Donations
## Donations

Please take a moment to donate! 1ArmoryXcfq7TnCSuZa9fQjRYwJ4bkRKfv

![bitcoin:1ArmoryXcfq7TnCSuZa9fQjRYwJ4bkRKfv][Donation Image]

##Building Armory From Source
## Building Armory From Source

See instructions [here][Armory Build Instructions]


##Dependencies
## Dependencies

* GNU Compiler Collection
Linux: Install package `g++`
Expand Down Expand Up @@ -55,20 +55,20 @@ See instructions [here][Armory Build Instructions]
(OPTIONAL - if you want to make a standalone executable in Windows)
Windows: [Download][Windows Py2Exe Download]

##Sample Code
## Sample Code

Armory contains over 25,000 lines of code, between the C++ and python libraries. This can be very confusing for someone unfamiliar with the code (you). Below I have attempted to illustrate the CONOPS (concept of operations) that the library was designed for, so you know how to use it in your own development activities. There is a TON of sample code in the following:

* C++ - [BlockUtilsTest.cpp](cppForSwig/BlockUtilsTest.cpp)
* Python - [Unit Tests](pytest/), [sample_armory_code.py](extras/sample_armory_code.py)


##License
## License

Distributed under the GNU Affero General Public License (AGPL v3)
See [LICENSE file](LICENSE) or [here][License]

##Copyright
## Copyright

Copyright (C) 2011-2015, Armory Technologies, Inc.

Expand Down