From f78984620a12f4ec5dfb4098a348d7b993a52e95 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Wed, 14 Jun 2017 10:37:34 -0700 Subject: [PATCH] Create 12_0_Talking_to_Bitcoind.md --- 12_0_Talking_to_Bitcoind.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/12_0_Talking_to_Bitcoind.md b/12_0_Talking_to_Bitcoind.md index 01373e4..34b9a0b 100644 --- a/12_0_Talking_to_Bitcoind.md +++ b/12_0_Talking_to_Bitcoind.md @@ -1,13 +1,13 @@ # Chapter 12: Talking to Bitcoind -While working with Bitcoin Scripts, we hit the boundaries of what's possible with `bitcoin-cli`. Fortunately, there are other ways to work with the Bitcoin network. Though these APIs can ultimately allow you to access _all_ of Bitcoin's functionality, we're going to start off with the simpler APIs that largely duplicate `bitcoin-cli` by accessing `bitcoind`. Consider it a new way to do what you already know that's a gateway to writing with APIs. +While working with Bitcoin Scripts, we hit the boundaries of what's possible with `bitcoin-cli`. Fortunately, there are other ways to work with the Bitcoin network. There are APIs that will ultimately allow you to access _all_ of Bitcoin's functionality, but we're going to start off with the simpler APIs that largely duplicate `bitcoin-cli` by accessing `bitcoind`. Consider it a new way to do what you already know and a gateway to the larger world of working with APIs. ## Objectives for This Chapter After working through this chapter, a developer will be able to: - * Decide Between a Few Methods of Talking to Bitcoind - * Create Bitcoin Transactions by Talking to Bitcoind + * Decide Between Different Methods of Talking to Bitcoind + * Create Bitcoin Transactions by Talking Directly to Bitcoind Supporting objectives include the ability to: