Skip to content

Commit

Permalink
Merge pull request #19 from cryptomkt/feat/adds-new-transaction-subty…
Browse files Browse the repository at this point in the history
…pe-airdrop

fix: commit risk rbf is boolean
  • Loading branch information
ppbustamante committed Jun 28, 2024
2 parents 28b66d9 + dbd913d commit eb22aa7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.cryptomkt.api</groupId>
<artifactId>cryptomarket</artifactId>
<packaging>jar</packaging>
<version>3.1.1</version>
<version>3.1.2</version>

<licenses>
<license>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/cryptomarket/sdk/models/CommitRisk.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public class CommitRisk {
private Integer score;
private String rbf;
private Boolean rbf;
@Json(name = "low_fee")
private String lowFee;

Expand Down Expand Up @@ -36,7 +36,7 @@ public void setScore(Integer score) {
*
* @return
*/
public String getRbf() {
public Boolean getRbf() {
return rbf;
}

Expand All @@ -45,7 +45,7 @@ public String getRbf() {
*
* @param rbf
*/
public void setRbf(String rbf) {
public void setRbf(Boolean rbf) {
this.rbf = rbf;
}

Expand Down

0 comments on commit eb22aa7

Please sign in to comment.