Skip to content

Commit

Permalink
fix nft collection, max tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwheeze committed May 4, 2024
1 parent 30c1c21 commit a3606b5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/main/java/bitwheeze/golos/goloslib/model/Content.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class Content {
long id;
String author;
String permlink;
String hashlink;
String parentAuthor;
String parentPermlink;
String category;
Expand Down Expand Up @@ -62,11 +63,16 @@ public class Content {
long votesInAuctionWindowWeight; //0,
long rootComment; //10152707,
String rootTitle; //Обновление игрушки",
String rootAuthor;
String app;
Asset maxAcceptedPayout; //10000.000 GBG",
int percentSteemDollars; //0,
boolean allowReplies; //true,
boolean allowVotes; //true,
boolean allowCurationRewards; //true,

Asset decryptFee;

int curationRewardsPercent; //5000,
Asset minGolosPowerToCurate; //5000.000 GOLOS",
boolean has_worker_request; //false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private Operation getOperation(JsonParser p, DeserializationContext ctxt, String
RawOperation op = new RawOperation();
op.setOpName(opName);
op.setOpBody(opBodyRaw.toString());
log.warn("unknwon operation {}", op);
log.warn("unknown operation {}", op);
return op;
}
}
Expand Down

0 comments on commit a3606b5

Please sign in to comment.