mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
874da40150
- path processor constants moved to wallet constants - FetchPrices and FindToken functions moved from send type package to router package
13 lines
530 B
Go
13 lines
530 B
Go
package transfer
|
|
|
|
import (
|
|
"github.com/status-im/status-go/errors"
|
|
)
|
|
|
|
// Abbreviation `WT` for the error code stands for Wallet Transfer
|
|
var (
|
|
ErrNoRoute = &errors.ErrorResponse{Code: errors.ErrorCode("WT-001"), Details: "no generated route"}
|
|
ErrNoTrsansactionsBeingBuilt = &errors.ErrorResponse{Code: errors.ErrorCode("WT-002"), Details: "no transactions being built"}
|
|
ErrMissingSignatureForTx = &errors.ErrorResponse{Code: errors.ErrorCode("WT-003"), Details: "missing signature for transaction %s"}
|
|
)
|