项目作者: boxproject

项目描述 :
a lib for bitcore
高级语言: Go
项目地址: git://github.com/boxproject/lib-bitcore.git
创建时间: 2018-03-16T09:35:25Z
项目社区:https://github.com/boxproject/lib-bitcore

开源协议:

下载


lib-bitcore

a lib for bitcore

modify list:

  1. 1. chain.go, we added some RescanBlock methods below, you can use these methods rescan block convinently:
  2. func (c *Client) RescanBlockChainAsync() FutureRescanBlockChainResult
  3. func (c *Client) RescanBlockChainStartAsync(startHeight int) FutureRescanBlockChainResult
  4. func (c *Client) RescanBlockChainStartStopAsync(startHeight, stopHeight int) FutureRescanBlockChainResult
  5. func (c *Client) RescanBlockChain() (*sebtcjson.RescanBlockChanResult,error)
  6. func (c *Client) RescanBlockChainStart(startHeight int) (*sebtcjson.RescanBlockChanResult,error)
  7. func (c *Client) RescanBlockChainStartStop(startHeight, stopHeight int) (*sebtcjson.RescanBlockChanResult,error)
  8. 2. wallet.go, we added some ImportAddress methods,you do not need rescan all blocks yet.
  9. func (c *Client) ImportAddressRescanAsync(address ,lable string, rescan bool) FutureImportAddressResult
  10. func (c *Client) ImportAddressRescan(address,lable string, rescan bool) error