Skip to content

Commit

Permalink
refactor(timekeeper): completely isolate timekeeper classes into the …
Browse files Browse the repository at this point in the history
…timekeeper pkg

Signed-off-by: Kevin O'Donnell <[email protected]>
  • Loading branch information
scealiontach committed Jun 3, 2021
1 parent d942361 commit d408a28
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 19 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@

import org.junit.Test;

import com.blockchaintp.sawtooth.timekeeper.Namespace;

public class NamespaceTest {

@Test
public void testMakeAddress() {
String testString = Namespace.makeAddress(Namespace.getNameSpace(), "somerandomString");
var testString = Namespace.makeAddress(Namespace.getNameSpace(), "somerandomString");
assertTrue(testString.length() == 70);
}

Expand Down
5 changes: 5 additions & 0 deletions sawtooth-daml-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,11 @@
<artifactId>daml-on-sawtooth-protobufs</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>daml-on-sawtooth</groupId>
<artifactId>timekeeper</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.hyperledger.sawtooth</groupId>
<artifactId>sawtooth-sdk-transaction-processor</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions sawtooth-daml-tp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@
<artifactId>sawtooth-daml-common</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>daml-on-sawtooth</groupId>
<artifactId>timekeeper</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>daml-on-sawtooth</groupId>
<artifactId>daml-on-sawtooth-protobufs</artifactId>
Expand Down

0 comments on commit d408a28

Please sign in to comment.