OSDN Git Service

remove uselss xpubs parameter for sign function (#695)
[bytom/bytom.git] / api / wallet.go
1 package api
2
3 import (
4         "github.com/bytom/errors"
5 )
6
7 // POST /wallet error
8 func (a *API) walletError() Response {
9         return NewErrorResponse(errors.New("wallet not found, please check that the wallet is open"))
10 }