Update ethrpc/ethparser to match modified BlockChain interface
This commit is contained in:
parent
3c97142dd1
commit
6d3ba2e690
@ -5,6 +5,22 @@ import "blockbook/bchain"
|
|||||||
type EthParser struct {
|
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) {
|
func (p *EthParser) AddressToOutputScript(address string) ([]byte, error) {
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|||||||
@ -249,7 +249,7 @@ func (b *EthRPC) ResyncMempool(onNewTxAddr func(txid string, addr string)) error
|
|||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *EthRPC) GetMempoolTransactions(outputScript []byte) ([]string, error) {
|
func (b *EthRPC) GetMempoolTransactions(address string) ([]string, error) {
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user