Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/algorand/algosdk/logic/Logic.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public static ProgramData readProgram(byte[] program, List<byte[]> args) throws
}

/**
* Retrieves TEAL supported version
* Retrieves supported program version
* @return int
* @throws IOException
*/
Expand All @@ -269,7 +269,7 @@ public static int getLogicSigVersion() throws IOException {
}

/**
* Retrieves max supported version of TEAL evaluator
* Retrieves max supported program version of evaluator
* @return int
* @throws IOException
*/
Expand Down
10 changes: 5 additions & 5 deletions src/test/java/com/algorand/algosdk/logic/TestLogic.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public void testCheckProgramInvalidOpcode() throws Exception {
}

@Test
public void testCheckProgramTealV2() throws Exception {
public void testCheckProgramV2() throws Exception {
assertThat(getEvalMaxVersion()).isGreaterThanOrEqualTo(2);
assertThat(getLogicSigVersion()).isGreaterThanOrEqualTo(2);

Expand Down Expand Up @@ -269,7 +269,7 @@ public void testCheckProgramTealV2() throws Exception {
}

@Test
public void testCheckProgramTealV3() throws Exception {
public void testCheckProgramV3() throws Exception {
assertThat(getEvalMaxVersion()).isGreaterThanOrEqualTo(3);
assertThat(getLogicSigVersion()).isGreaterThanOrEqualTo(3);

Expand Down Expand Up @@ -311,7 +311,7 @@ public void testCheckProgramTealV3() throws Exception {
}

@Test
public void testCheckProgramTealV4() throws Exception {
public void testCheckProgramV4() throws Exception {
assertThat(getEvalMaxVersion()).isGreaterThanOrEqualTo(4);

{
Expand Down Expand Up @@ -379,7 +379,7 @@ public void testCheckProgramTealV4() throws Exception {
}

@Test
public void testCheckProgramTealV5() throws Exception {
public void testCheckProgramV5() throws Exception {
assertThat(getEvalMaxVersion()).isGreaterThanOrEqualTo(5);

{
Expand Down Expand Up @@ -414,7 +414,7 @@ public void testCheckProgramTealV5() throws Exception {
}

@Test
public void testCheckProgramTealV6() throws Exception {
public void testCheckProgramV6() throws Exception {
assertThat(getEvalMaxVersion()).isGreaterThanOrEqualTo(6);

{
Expand Down