forked from Qortal/qortal
a2b5fa140b
Most SQL tables defined but only payment transactions actually implemented. Maven support added. Some code imported from 'old' Qora: RIPEMD160 renamed as BrokenMD160 and deprecated. whispersystem's Ed25519 implementation (to be replaced with bouncycastle). Basic Account/PublicKeyAccount/PrivateKeyAccount code. Some utils like Base58 and Pair. To use: Use maven to fetch dependencies. Build project. Fire up an old-gen Qora node. Run src/test/update.java as a JUnit test to build DB structure. Run src/test/migrate.java as a JUnit test to migrate old Qora blocks to DB. You should now be able to run src/test/load.java and src/test/save.java as JUnit tests demonstrating loading/saving Transactions from/to database. This commit done while halfway through adding Block support!
22 lines
838 B
XML
22 lines
838 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<classpath>
|
|
<classpathentry kind="src" output="target/classes" path="src">
|
|
<attributes>
|
|
<attribute name="optional" value="true"/>
|
|
<attribute name="maven.pomderived" value="true"/>
|
|
</attributes>
|
|
</classpathentry>
|
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
|
|
<attributes>
|
|
<attribute name="maven.pomderived" value="true"/>
|
|
</attributes>
|
|
</classpathentry>
|
|
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
|
|
<attributes>
|
|
<attribute name="maven.pomderived" value="true"/>
|
|
</attributes>
|
|
</classpathentry>
|
|
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
|
|
<classpathentry kind="output" path="target/classes"/>
|
|
</classpath>
|