Skip to content

Commit

Permalink
Merge pull request tronprotocol#5806 from yanghang8612/fix/tvm_relate…
Browse files Browse the repository at this point in the history
…d_parameter_descriptions

docs(params): fix parameter descriptions for minTimeRatio and maxTime…
  • Loading branch information
lvs007 authored May 21, 2024
2 parents e7c8d40 + 963868e commit 76df76c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ public class CommonParameter {
@Getter
@Setter
@Parameter(names = {"--min-time-ratio"}, description = "Maximum CPU tolerance when executing "
+ "non-timeout transactions while synchronizing blocks. (default: 5.0)")
+ "timeout transactions while synchronizing blocks. (default: 0.0)")
public double minTimeRatio = 0.0;
@Getter
@Setter
@Parameter(names = {"--max-time-ratio"}, description = "Maximum CPU tolerance when executing "
+ "timeout transactions while synchronizing blocks. (default: 0.0)")
+ "non-timeout transactions while synchronizing blocks. (default: 5.0)")
public double maxTimeRatio = calcMaxTimeRatio();
@Getter
@Setter
Expand Down

0 comments on commit 76df76c

Please sign in to comment.