Update ethrpc/ethparser to match modified BlockChain interface

indexv1
Martin Boehm 2018-03-21 00:32:29 +01:00
parent 3c97142dd1
commit 6d3ba2e690
2 changed files with 17 additions and 1 deletions

View File

@ -5,6 +5,22 @@ import "blockbook/bchain"
type EthParser struct {
}
func (p *EthParser) GetUIDFromVout(output *bchain.Vout) string {
panic("not implemented")
}
func (p *EthParser) GetUIDFromAddress(address string) ([]byte, error) {
panic("not implemented")
}
func (p *EthParser) PackUID(script string) ([]byte, error) {
panic("not implemented")
}
func (p *EthParser) UnpackUID(buf []byte) string {
panic("not implemented")
}
func (p *EthParser) AddressToOutputScript(address string) ([]byte, error) {
panic("not implemented")
}

View File

@ -249,7 +249,7 @@ func (b *EthRPC) ResyncMempool(onNewTxAddr func(txid string, addr string)) error
panic("not implemented")
}
func (b *EthRPC) GetMempoolTransactions(outputScript []byte) ([]string, error) {
func (b *EthRPC) GetMempoolTransactions(address string) ([]string, error) {
panic("not implemented")
}