Skip to content

Commit

Permalink
Add ERROR to more_info (#1437)
Browse files Browse the repository at this point in the history
### Description

Add ERROR status to more_info genetaror 

### Context

Partner request

### Testing

- `./gradlew test`

### Documentation

N/A

### Known limitations

N/A
  • Loading branch information
Ifropc authored Jul 29, 2024
1 parent 147cf2c commit 5459846
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("org.jetbrains.kotlin.jvm") version "1.6.10"
}

version = "1.0.19"
version = "1.0.20"

dependencies {
compileOnly(libs.servlet.api)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,6 @@ public static DepositTransactionResponse of(
REFUNDED.toString(),
PENDING_EXTERNAL.toString(),
PENDING_ANCHOR.toString(),
PENDING_USER.toString());
PENDING_USER.toString(),
ERROR.toString());
}

0 comments on commit 5459846

Please sign in to comment.