jgarzik / python-bitcoinrpc

Python interface to bitcoin's JSON-RPC API
GNU Lesser General Public License v2.1
644 stars 304 forks source link

Better JSON 2.0 batch support #38

Closed gavinandresen closed 9 years ago

gavinandresen commented 9 years ago

Replaces the undocumented, doesn't-really-work _batch() call with a batch_() method.

Named batch_ to avoid potential conflicts if a JSON-RPC server uses "batch" as a method name. (not _batch because _foo is the Python convention for non-public methods).

Builds on #31

jgarzik commented 9 years ago

ACK