Skip to content

Commit a9a3a58

Browse files
authored
Merge pull request #20 from cryptomkt/fix/commit-risk
fix: commit risk
2 parents f431213 + b8fa7e1 commit a9a3a58

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.cryptomkt.api</groupId>
77
<artifactId>cryptomarket</artifactId>
88
<packaging>jar</packaging>
9-
<version>3.1.2</version>
9+
<version>3.1.3</version>
1010

1111
<licenses>
1212
<license>

src/main/java/com/cryptomarket/sdk/models/CommitRisk.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class CommitRisk {
66
private Integer score;
77
private Boolean rbf;
88
@Json(name = "low_fee")
9-
private String lowFee;
9+
private Boolean lowFee;
1010

1111
/**
1212
* Gets the risk score of the associated transaction. For more information see
@@ -57,7 +57,7 @@ public void setRbf(Boolean rbf) {
5757
*
5858
* @return
5959
*/
60-
public String getLowFee() {
60+
public Boolean getLowFee() {
6161
return lowFee;
6262
}
6363

@@ -66,7 +66,7 @@ public String getLowFee() {
6666
*
6767
* @param lowFee
6868
*/
69-
public void setLowFee(String lowFee) {
69+
public void setLowFee(Boolean lowFee) {
7070
this.lowFee = lowFee;
7171
}
7272

0 commit comments

Comments
 (0)