forked from Qortal/qortal
16 lines
260 B
Java
16 lines
260 B
Java
package test;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import qora.block.BlockChain;
|
|
import repository.DataException;
|
|
|
|
public class BlockchainTests extends Common {
|
|
|
|
@Test
|
|
public void testValidateOrRebuild() throws DataException {
|
|
BlockChain.validate();
|
|
}
|
|
|
|
}
|