Skip to content

Commit 754af3d

Browse files
authored
Merge pull request #330 from tronprotocol/feature/change_fee
code: change asset issue fee.
2 parents 1016301 + 5debd62 commit 754af3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/tron/core/config/Parameter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ public interface Parameter {
55
interface ChainConstant {
66

77
long TRANSFER_FEE = 0; // 1 drop
8-
long ASSET_ISSUE_FEE = 1000000000; // 1000 trx 10^9
8+
long ASSET_ISSUE_FEE = 1024000000; // 1024 trx 1024*10^6
99
long VOTE_WITNESS_FEE = 10000; // 10000 drop
1010
long CREATE_ACCOUNT_FEE = 10000; // 10000 drop
11-
long WITNESS_PAY_PER_BLOCK = 32000000; // 3trx
11+
long WITNESS_PAY_PER_BLOCK = 32000000; // 32trx
1212
int BLOCK_PRODUCED_INTERVAL = 3; // 3sec
1313

1414
double SOLIDIFIED_THRESHOLD = 0.3;

0 commit comments

Comments
 (0)