Skip to content

Commit

Permalink
adjust fee limit
Browse files Browse the repository at this point in the history
  • Loading branch information
running-tomato committed Feb 9, 2021
1 parent 1c49460 commit c133964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/src/main/java/com/tron/client/OracleClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class OracleClient {

private static final String EVENT_NAME = "OracleRequest";
private static final String EVENT_NEW_ROUND = "NewRound";
private static final long MIN_FEE_LIMIT = 10_000_000L; // 10 trx
private static final long MIN_FEE_LIMIT = 20_000_000L; // 10 trx

private static Cache<String, String> requestIdsCache = CacheBuilder.newBuilder().maximumSize(10000)
.expireAfterWrite(12, TimeUnit.HOURS).recordStats().build();
Expand Down

0 comments on commit c133964

Please sign in to comment.