Skip to content

Commit

Permalink
Merge pull request tronprotocol#5650 from forfreeday/feature/add_test…
Browse files Browse the repository at this point in the history
…case

feat(LiteFullNode): remove LiteFullNodeTool
  • Loading branch information
forfreeday authored Jan 16, 2024
2 parents 46454a2 + 1225ace commit 4bb4922
Show file tree
Hide file tree
Showing 39 changed files with 1,443 additions and 1,462 deletions.
6 changes: 0 additions & 6 deletions framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,11 @@ createScript(project, 'org.tron.program.SolidityNode', 'SolidityNode')
createScript(project, 'org.tron.program.FullNode', 'FullNode')
createScript(project, 'org.tron.program.KeystoreFactory', 'KeystoreFactory')
createScript(project, 'org.tron.program.DBConvert', 'DBConvert')
createScript(project, 'org.tron.tool.litefullnode.LiteFullNodeTool', 'LiteFullNodeTool')

def releaseBinary = hasProperty('binaryRelease') ? getProperty('binaryRelease') : 'true'
def skipSolidity = hasProperty('skipSolidity') ? true : false
def skipKeystore = hasProperty('skipKeystore') ? true : false
def skipConvert = hasProperty('skipConvert') ? true : false
def skipLite = hasProperty('skipLite') ? true : false
def skipAll = hasProperty('skipAll') ? true : false
if (releaseBinary == 'true') {
artifacts {
Expand All @@ -241,10 +239,6 @@ if (releaseBinary == 'true') {
artifacts {
archives(binaryRelease('buildDBConvertJar', 'DBConvert', 'org.tron.program.DBConvert'))}
}
if (!skipLite) {
artifacts {
archives(binaryRelease('buildLiteFullNodeToolJar', 'LiteFullNodeTool', 'org.tron.tool.litefullnode.LiteFullNodeTool'))}
}
}

}
Expand Down
199 changes: 0 additions & 199 deletions framework/src/main/java/org/tron/tool/litefullnode/DbTool.java

This file was deleted.

Loading

0 comments on commit 4bb4922

Please sign in to comment.