Skip to content

Commit

Permalink
release 0.2.0: Issue #51:
Browse files Browse the repository at this point in the history
Encoding of DeployNamedArg when value is of type CLType.KEY
  • Loading branch information
cnorburn committed Sep 24, 2021
1 parent 5026a5e commit b05d2ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>network.casper</groupId>
<artifactId>casper-java-sdk</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
<name>Casper Java SDK</name>
<description>Casper Java SDK</description>
<url>https://casperlabs.io/</url>
Expand Down
3 changes: 2 additions & 1 deletion src/test/java/com/casper/sdk/CasperSdkIntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import org.bouncycastle.crypto.AsymmetricCipherKeyPair;
import org.bouncycastle.crypto.params.Ed25519PublicKeyParameters;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -21,7 +22,7 @@
/**
* Casper SDK integration tests. The NCTL test nodes must be running for these tests to execute.
*/
//@Disabled // TODO Remove this comment to tests against a network
@Disabled // TODO Remove this comment to tests against a network
class CasperSdkIntegrationTest {

/** Path the nctl folder can be overridden with -Dnctl.home=some-path */
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/com/casper/sdk/InvokeContractIntTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import com.casper.sdk.types.*;
import org.bouncycastle.crypto.AsymmetricCipherKeyPair;
import org.bouncycastle.crypto.params.Ed25519PublicKeyParameters;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.IOException;
Expand All @@ -18,6 +19,7 @@
/**
* Integration tests for invoking a contract
*/
@Disabled
public class InvokeContractIntTest {

private static final long AMOUNT_TO_TRANSFER = 2000000000L;
Expand Down

0 comments on commit b05d2ef

Please sign in to comment.