funding+utxonursery+breacharbiter: use new FeeEstimator API

This commit is contained in:
Olaoluwa Osuntokun
2017-11-23 13:38:08 -06:00
parent ad364ae9a1
commit a3cd248404
4 changed files with 32 additions and 20 deletions

View File

@ -141,7 +141,9 @@ func (m *mockWalletController) NewRawKey() (*btcec.PublicKey, error) {
func (m *mockWalletController) FetchRootKey() (*btcec.PrivateKey, error) {
return m.rootKey, nil
}
func (*mockWalletController) SendOutputs(outputs []*wire.TxOut) (*chainhash.Hash, error) {
func (*mockWalletController) SendOutputs(outputs []*wire.TxOut,
_ btcutil.Amount) (*chainhash.Hash, error) {
return nil, nil
}