Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public TriggerConfig() {
triggerName = "";
enabled = false;
topic = "";
redundancy = false; // event will also write to log
redundancy = false; // if true, event triggers will also be emitted as log triggers
ethCompatible = false; // add eth compatible fields, just for transaction now
solidified = false; // just write solidified data, just for block and transaction now
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ protected void addServlet(ServletContextHandler context) {
context.addServlet(new ServletHolder(getMarketPairListOnSolidityServlet),
"/walletsolidity/getmarketpairlist");

// only for SolidityNode
context.addServlet(new ServletHolder(getTransactionByIdOnSolidityServlet),
"/walletsolidity/gettransactionbyid");
context.addServlet(new ServletHolder(getTransactionInfoByIdOnSolidityServlet),
Expand Down
2 changes: 1 addition & 1 deletion framework/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
<!-- rollover daily -->
<fileNamePattern>./logs/tron-%d{yyyy-MM-dd}.%i.log.gz</fileNamePattern>
<!-- each file should be at most 500MB, keep 30 days worth of history, but at most 50GB -->
<!-- each file should be at most 500MB, keep 7 days worth of history, but at most 50GB -->
<maxFileSize>500MB</maxFileSize>
<maxHistory>7</maxHistory>
<totalSizeCap>50GB</totalSizeCap>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ message AccountCreateContract {
AccountType type = 3;
}

// Update account name. Account name is not unique now.
// Update account name. ALLOW_UPDATE_ACCOUNT_NAME is not enabled on Mainnet, so account names are currently unique.
message AccountUpdateContract {
bytes account_name = 1;
bytes owner_address = 2;
Expand All @@ -47,4 +47,3 @@ message AccountPermissionUpdateContract {
Permission witness = 3; //Can be empty
repeated Permission actives = 4; //Empty is invalidate
}

Loading