Skip to content

Commit eb22aa7

Browse files
authored
Merge pull request #19 from cryptomkt/feat/adds-new-transaction-subtype-airdrop
fix: commit risk rbf is boolean
2 parents 28b66d9 + dbd913d commit eb22aa7

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.1</version>
9+
<version>3.1.2</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
@@ -4,7 +4,7 @@
44

55
public class CommitRisk {
66
private Integer score;
7-
private String rbf;
7+
private Boolean rbf;
88
@Json(name = "low_fee")
99
private String lowFee;
1010

@@ -36,7 +36,7 @@ public void setScore(Integer score) {
3636
*
3737
* @return
3838
*/
39-
public String getRbf() {
39+
public Boolean getRbf() {
4040
return rbf;
4141
}
4242

@@ -45,7 +45,7 @@ public String getRbf() {
4545
*
4646
* @param rbf
4747
*/
48-
public void setRbf(String rbf) {
48+
public void setRbf(Boolean rbf) {
4949
this.rbf = rbf;
5050
}
5151

0 commit comments

Comments
 (0)