mirror of
https://github.com/muun/recovery.git
synced 2025-11-11 14:30:19 -05:00
Release v0.3.0
This commit is contained in:
85
vendor/github.com/btcsuite/btcwallet/wallet/mock.go
generated
vendored
Normal file
85
vendor/github.com/btcsuite/btcwallet/wallet/mock.go
generated
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
package wallet
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/btcsuite/btcutil"
|
||||
"github.com/btcsuite/btcwallet/chain"
|
||||
"github.com/btcsuite/btcwallet/waddrmgr"
|
||||
)
|
||||
|
||||
type mockChainClient struct {
|
||||
}
|
||||
|
||||
var _ chain.Interface = (*mockChainClient)(nil)
|
||||
|
||||
func (m *mockChainClient) Start() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) Stop() {
|
||||
}
|
||||
|
||||
func (m *mockChainClient) WaitForShutdown() {}
|
||||
|
||||
func (m *mockChainClient) GetBestBlock() (*chainhash.Hash, int32, error) {
|
||||
return nil, 0, nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) GetBlock(*chainhash.Hash) (*wire.MsgBlock, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) GetBlockHash(int64) (*chainhash.Hash, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) GetBlockHeader(*chainhash.Hash) (*wire.BlockHeader,
|
||||
error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) IsCurrent() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *mockChainClient) FilterBlocks(*chain.FilterBlocksRequest) (
|
||||
*chain.FilterBlocksResponse, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) BlockStamp() (*waddrmgr.BlockStamp, error) {
|
||||
return &waddrmgr.BlockStamp{
|
||||
Height: 500000,
|
||||
Hash: chainhash.Hash{},
|
||||
Timestamp: time.Unix(1234, 0),
|
||||
}, nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) SendRawTransaction(*wire.MsgTx, bool) (
|
||||
*chainhash.Hash, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) Rescan(*chainhash.Hash, []btcutil.Address,
|
||||
map[wire.OutPoint]btcutil.Address) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) NotifyReceived([]btcutil.Address) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) NotifyBlocks() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) Notifications() <-chan interface{} {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *mockChainClient) BackEnd() string {
|
||||
return "mock"
|
||||
}
|
||||
Reference in New Issue
Block a user