1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-14 03:48:58 +00:00

Edited ch03_bitcoin-core.adoc with Atlas code editor

This commit is contained in:
claylock 2023-10-26 19:06:08 +00:00
parent 95b5930a17
commit b873da2c73

View File

@ -974,7 +974,7 @@ and testing functions. But the whole point of an API is to access functions prog
will demonstrate accessing Bitcoin Core from another program.
Bitcoin Core's API is a JSON-RPC interface. JSON stands for JavaScript
Object Notation and it is a very convenient way to present data that
Object Notation, and it is a very convenient way to present data that
both humans and programs can easily read. RPC stands for Remote
Procedure Call, which means that we are calling procedures (functions)
that are remote (on the Bitcoin Core node) via a network protocol. In