max: fix v3 deposit state conversion
This commit is contained in:
parent
0b572aa967
commit
38e7f4f98f
|
@ -284,6 +284,13 @@ func toGlobalDepositStatus(a max.DepositState) types.DepositStatus {
|
||||||
|
|
||||||
case max.DepositStateAccepted:
|
case max.DepositStateAccepted:
|
||||||
return types.DepositSuccess
|
return types.DepositSuccess
|
||||||
|
|
||||||
|
case max.DepositStateProcessing: // v3 states
|
||||||
|
return types.DepositPending
|
||||||
|
|
||||||
|
case max.DepositStateDone: // v3 states
|
||||||
|
return types.DepositSuccess
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// other states goes to this
|
// other states goes to this
|
||||||
|
|
|
@ -116,6 +116,10 @@ const (
|
||||||
DepositStateSuspended DepositState = "suspended"
|
DepositStateSuspended DepositState = "suspended"
|
||||||
DepositStateAccepted DepositState = "accepted"
|
DepositStateAccepted DepositState = "accepted"
|
||||||
DepositStateChecking DepositState = "checking"
|
DepositStateChecking DepositState = "checking"
|
||||||
|
|
||||||
|
// v3 states
|
||||||
|
DepositStateProcessing DepositState = "processing"
|
||||||
|
DepositStateDone DepositState = "done"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Deposit struct {
|
type Deposit struct {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user