mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-26 00:05:18 +00:00
fix: renumber error messages (#812)
This commit is contained in:
parent
e351e20727
commit
bc1fab7836
@ -8,59 +8,59 @@ import (
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
// ErrInvalidDepositDenom error for invalid deposit denoms
|
// ErrInvalidDepositDenom error for invalid deposit denoms
|
||||||
ErrInvalidDepositDenom = sdkerrors.Register(ModuleName, 1, "invalid deposit denom")
|
ErrInvalidDepositDenom = sdkerrors.Register(ModuleName, 2, "invalid deposit denom")
|
||||||
// ErrDepositNotFound error for deposit not found
|
// ErrDepositNotFound error for deposit not found
|
||||||
ErrDepositNotFound = sdkerrors.Register(ModuleName, 2, "deposit not found")
|
ErrDepositNotFound = sdkerrors.Register(ModuleName, 3, "deposit not found")
|
||||||
// ErrInvalidWithdrawAmount error for invalid withdrawal amount
|
// ErrInvalidWithdrawAmount error for invalid withdrawal amount
|
||||||
ErrInvalidWithdrawAmount = sdkerrors.Register(ModuleName, 3, "invalid withdrawal amount")
|
ErrInvalidWithdrawAmount = sdkerrors.Register(ModuleName, 4, "invalid withdrawal amount")
|
||||||
// ErrInsufficientModAccountBalance error for module account with innsufficient balance
|
// ErrInsufficientModAccountBalance error for module account with innsufficient balance
|
||||||
ErrInsufficientModAccountBalance = sdkerrors.Register(ModuleName, 4, "module account has insufficient balance to pay reward")
|
ErrInsufficientModAccountBalance = sdkerrors.Register(ModuleName, 5, "module account has insufficient balance to pay reward")
|
||||||
// ErrInvalidAccountType error for unsupported accounts
|
// ErrInvalidAccountType error for unsupported accounts
|
||||||
ErrInvalidAccountType = sdkerrors.Register(ModuleName, 5, "receiver account type not supported")
|
ErrInvalidAccountType = sdkerrors.Register(ModuleName, 6, "receiver account type not supported")
|
||||||
// ErrAccountNotFound error for accounts that are not found in state
|
// ErrAccountNotFound error for accounts that are not found in state
|
||||||
ErrAccountNotFound = sdkerrors.Register(ModuleName, 6, "account not found")
|
ErrAccountNotFound = sdkerrors.Register(ModuleName, 7, "account not found")
|
||||||
// ErrInvalidReceiver error for when sending and receiving accounts don't match
|
// ErrInvalidReceiver error for when sending and receiving accounts don't match
|
||||||
ErrInvalidReceiver = sdkerrors.Register(ModuleName, 7, "receiver account must match sender account")
|
ErrInvalidReceiver = sdkerrors.Register(ModuleName, 8, "receiver account must match sender account")
|
||||||
// ErrMoneyMarketNotFound error for money market param not found
|
// ErrMoneyMarketNotFound error for money market param not found
|
||||||
ErrMoneyMarketNotFound = sdkerrors.Register(ModuleName, 8, "no money market found")
|
ErrMoneyMarketNotFound = sdkerrors.Register(ModuleName, 9, "no money market found")
|
||||||
// ErrDepositsNotFound error for no deposits found
|
// ErrDepositsNotFound error for no deposits found
|
||||||
ErrDepositsNotFound = sdkerrors.Register(ModuleName, 9, "no deposits found")
|
ErrDepositsNotFound = sdkerrors.Register(ModuleName, 10, "no deposits found")
|
||||||
// ErrInsufficientLoanToValue error for when an attempted borrow exceeds maximum loan-to-value
|
// ErrInsufficientLoanToValue error for when an attempted borrow exceeds maximum loan-to-value
|
||||||
ErrInsufficientLoanToValue = sdkerrors.Register(ModuleName, 10, "not enough collateral supplied by account")
|
ErrInsufficientLoanToValue = sdkerrors.Register(ModuleName, 11, "not enough collateral supplied by account")
|
||||||
// ErrMarketNotFound error for when a market for the input denom is not found
|
// ErrMarketNotFound error for when a market for the input denom is not found
|
||||||
ErrMarketNotFound = sdkerrors.Register(ModuleName, 11, "no market found for denom")
|
ErrMarketNotFound = sdkerrors.Register(ModuleName, 12, "no market found for denom")
|
||||||
// ErrPriceNotFound error for when a price for the input market is not found
|
// ErrPriceNotFound error for when a price for the input market is not found
|
||||||
ErrPriceNotFound = sdkerrors.Register(ModuleName, 12, "no price found for market")
|
ErrPriceNotFound = sdkerrors.Register(ModuleName, 13, "no price found for market")
|
||||||
// ErrBorrowExceedsAvailableBalance for when a requested borrow exceeds available module acc balances
|
// ErrBorrowExceedsAvailableBalance for when a requested borrow exceeds available module acc balances
|
||||||
ErrBorrowExceedsAvailableBalance = sdkerrors.Register(ModuleName, 13, "exceeds module account balance")
|
ErrBorrowExceedsAvailableBalance = sdkerrors.Register(ModuleName, 14, "exceeds module account balance")
|
||||||
// ErrBorrowedCoinsNotFound error for when the total amount of borrowed coins cannot be found
|
// ErrBorrowedCoinsNotFound error for when the total amount of borrowed coins cannot be found
|
||||||
ErrBorrowedCoinsNotFound = sdkerrors.Register(ModuleName, 14, "no borrowed coins found")
|
ErrBorrowedCoinsNotFound = sdkerrors.Register(ModuleName, 15, "no borrowed coins found")
|
||||||
// ErrNegativeBorrowedCoins error for when substracting coins from the total borrowed balance results in a negative amount
|
// ErrNegativeBorrowedCoins error for when substracting coins from the total borrowed balance results in a negative amount
|
||||||
ErrNegativeBorrowedCoins = sdkerrors.Register(ModuleName, 15, "subtraction results in negative borrow amount")
|
ErrNegativeBorrowedCoins = sdkerrors.Register(ModuleName, 16, "subtraction results in negative borrow amount")
|
||||||
// ErrGreaterThanAssetBorrowLimit error for when a proposed borrow would increase borrowed amount over the asset's global borrow limit
|
// ErrGreaterThanAssetBorrowLimit error for when a proposed borrow would increase borrowed amount over the asset's global borrow limit
|
||||||
ErrGreaterThanAssetBorrowLimit = sdkerrors.Register(ModuleName, 16, "fails global asset borrow limit validation")
|
ErrGreaterThanAssetBorrowLimit = sdkerrors.Register(ModuleName, 17, "fails global asset borrow limit validation")
|
||||||
// ErrBorrowEmptyCoins error for when you cannot borrow empty coins
|
// ErrBorrowEmptyCoins error for when you cannot borrow empty coins
|
||||||
ErrBorrowEmptyCoins = sdkerrors.Register(ModuleName, 17, "cannot borrow zero coins")
|
ErrBorrowEmptyCoins = sdkerrors.Register(ModuleName, 18, "cannot borrow zero coins")
|
||||||
// ErrBorrowNotFound error for when a user's borrow is not found in the store
|
// ErrBorrowNotFound error for when a user's borrow is not found in the store
|
||||||
ErrBorrowNotFound = sdkerrors.Register(ModuleName, 18, "borrow not found")
|
ErrBorrowNotFound = sdkerrors.Register(ModuleName, 19, "borrow not found")
|
||||||
// ErrPreviousAccrualTimeNotFound error for no previous accrual time found in store
|
// ErrPreviousAccrualTimeNotFound error for no previous accrual time found in store
|
||||||
ErrPreviousAccrualTimeNotFound = sdkerrors.Register(ModuleName, 19, "no previous accrual time found")
|
ErrPreviousAccrualTimeNotFound = sdkerrors.Register(ModuleName, 20, "no previous accrual time found")
|
||||||
// ErrInsufficientBalanceForRepay error for when requested repay exceeds user's balance
|
// ErrInsufficientBalanceForRepay error for when requested repay exceeds user's balance
|
||||||
ErrInsufficientBalanceForRepay = sdkerrors.Register(ModuleName, 20, "insufficient balance")
|
ErrInsufficientBalanceForRepay = sdkerrors.Register(ModuleName, 21, "insufficient balance")
|
||||||
// ErrBorrowNotLiquidatable error for when a borrow is within valid LTV and cannot be liquidated
|
// ErrBorrowNotLiquidatable error for when a borrow is within valid LTV and cannot be liquidated
|
||||||
ErrBorrowNotLiquidatable = sdkerrors.Register(ModuleName, 21, "borrow not liquidatable")
|
ErrBorrowNotLiquidatable = sdkerrors.Register(ModuleName, 22, "borrow not liquidatable")
|
||||||
// ErrInsufficientCoins error for when there are not enough coins for the operation
|
// ErrInsufficientCoins error for when there are not enough coins for the operation
|
||||||
ErrInsufficientCoins = sdkerrors.Register(ModuleName, 22, "unrecoverable state - insufficient coins")
|
ErrInsufficientCoins = sdkerrors.Register(ModuleName, 23, "unrecoverable state - insufficient coins")
|
||||||
// ErrInsufficientBalanceForBorrow error for when the requested borrow exceeds user's balance
|
// ErrInsufficientBalanceForBorrow error for when the requested borrow exceeds user's balance
|
||||||
ErrInsufficientBalanceForBorrow = sdkerrors.Register(ModuleName, 23, "insufficient balance")
|
ErrInsufficientBalanceForBorrow = sdkerrors.Register(ModuleName, 24, "insufficient balance")
|
||||||
// ErrSuppliedCoinsNotFound error for when the total amount of supplied coins cannot be found
|
// ErrSuppliedCoinsNotFound error for when the total amount of supplied coins cannot be found
|
||||||
ErrSuppliedCoinsNotFound = sdkerrors.Register(ModuleName, 24, "no supplied coins found")
|
ErrSuppliedCoinsNotFound = sdkerrors.Register(ModuleName, 25, "no supplied coins found")
|
||||||
// ErrNegativeSuppliedCoins error for when substracting coins from the total supplied balance results in a negative amount
|
// ErrNegativeSuppliedCoins error for when substracting coins from the total supplied balance results in a negative amount
|
||||||
ErrNegativeSuppliedCoins = sdkerrors.Register(ModuleName, 25, "subtraction results in negative supplied amount")
|
ErrNegativeSuppliedCoins = sdkerrors.Register(ModuleName, 26, "subtraction results in negative supplied amount")
|
||||||
// ErrInvalidWithdrawDenom error for when user attempts to withdraw a non-supplied coin type
|
// ErrInvalidWithdrawDenom error for when user attempts to withdraw a non-supplied coin type
|
||||||
ErrInvalidWithdrawDenom = sdkerrors.Register(ModuleName, 26, "no coins of this type deposited")
|
ErrInvalidWithdrawDenom = sdkerrors.Register(ModuleName, 27, "no coins of this type deposited")
|
||||||
// ErrInvalidRepaymentDenom error for when user attempts to repay a non-borrowed coin type
|
// ErrInvalidRepaymentDenom error for when user attempts to repay a non-borrowed coin type
|
||||||
ErrInvalidRepaymentDenom = sdkerrors.Register(ModuleName, 27, "no coins of this type borrowed")
|
ErrInvalidRepaymentDenom = sdkerrors.Register(ModuleName, 28, "no coins of this type borrowed")
|
||||||
// ErrInvalidIndexFactorDenom error for when index factor denom cannot be found
|
// ErrInvalidIndexFactorDenom error for when index factor denom cannot be found
|
||||||
ErrInvalidIndexFactorDenom = sdkerrors.Register(ModuleName, 28, "no index factor found for denom")
|
ErrInvalidIndexFactorDenom = sdkerrors.Register(ModuleName, 29, "no index factor found for denom")
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user