README ¶ go-bitcoinrpc Simple, go-get-able Bitcoind HTTP RPC library based on ThePiachu's Go-HTTP-JSON-RPC. Expand ▾ Collapse ▴ Documentation ¶ Index ¶ func PostContents(p Postable, data []byte) ([]byte, error) type Postable type RPCCall type RPCResponse func Call(p Postable, call_params RPCCall) (RPCResponse, error) type StandalonePoster func (p StandalonePoster) Post(r io.Reader) (*http.Response, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func PostContents ¶ func PostContents(p Postable, data []byte) ([]byte, error) Types ¶ type Postable ¶ type Postable interface { Post(r io.Reader) (*http.Response, error) } type RPCCall ¶ type RPCCall struct { Method string Id interface{} Params []interface{} } type RPCResponse ¶ type RPCResponse map[string]interface{} func Call ¶ func Call(p Postable, call_params RPCCall) (RPCResponse, error) type StandalonePoster ¶ type StandalonePoster struct { Address string } func (StandalonePoster) Post ¶ func (p StandalonePoster) Post(r io.Reader) (*http.Response, error) Source Files ¶ View all Source files basic.gobasic_structures.gostandalone.go Directories ¶ Show internal Expand all Path Synopsis appengine Click to show internal directories. Click to hide internal directories.