Skip to content

Commit

Permalink
Merge branch 'release/1.14.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
onetechnical committed May 2, 2022
2 parents da304e9 + 75a8799 commit 6506e97
Show file tree
Hide file tree
Showing 24 changed files with 377 additions and 45 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 1.14.0
## Added
- Add foreign app address to dryrun creator (#315)
- Add appTrace and lsigTrace DryrunTxnResult printer utility functions. (#305)
- Add createDryrun helper function. (#284)
- Add error message with atomic transaction composer (#311)
## Changed
- Update generated client code. (#307)

# 1.13.0
- Unlimited assets regenerated code. (#302)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
unit:
mvn test -Dcucumber.filter.tags="@unit.offline or @unit.algod or @unit.indexer or @unit.rekey or @unit.indexer.rekey or @unit.transactions or @unit.transactions.keyreg or @unit.responses or @unit.applications or @unit.dryrun or @unit.tealsign or @unit.responses.messagepack or @unit.responses.231 or @unit.responses.messagepack.231 or @unit.feetest or @unit.indexer.logs or @unit.abijson or @unit.atomic_transaction_composer or @unit.transactions.payment or @unit.responses.unlimited_assets or @unit.algod.ledger_refactoring or @unit.indexer.ledger_refactoring"
mvn test -Dcucumber.filter.tags="@unit.offline or @unit.algod or @unit.indexer or @unit.rekey or @unit.indexer.rekey or @unit.transactions or @unit.transactions.keyreg or @unit.responses or @unit.applications or @unit.dryrun or @unit.tealsign or @unit.responses.messagepack or @unit.responses.231 or @unit.responses.messagepack.231 or @unit.feetest or @unit.indexer.logs or @unit.abijson or @unit.atomic_transaction_composer or @unit.transactions.payment or @unit.responses.unlimited_assets or @unit.algod.ledger_refactoring or @unit.indexer.ledger_refactoring or @unit.dryrun.trace.application"

integration:
mvn test -Dcucumber.filter.tags="@algod or @assets or @auction or @kmd or @send or @send.keyregtxn or @indexer or @rekey or @applications.verified or @applications or @compile or @dryrun or @indexer.applications or @indexer.231 or @abi or @c2c"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Maven:
<dependency>
<groupId>com.algorand</groupId>
<artifactId>algosdk</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.algorand</groupId>
<artifactId>algosdk</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/algorand/algosdk/logic/StateSchema.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
@JsonPropertyOrder(alphabetic = true)
public class StateSchema implements Serializable {
@JsonProperty("nui")
BigInteger numUint = BigInteger.ZERO;
public BigInteger numUint = BigInteger.ZERO;

@JsonProperty("nbs")
BigInteger numByteSlice = BigInteger.ZERO;
public BigInteger numByteSlice = BigInteger.ZERO;

// Used by Jackson to figure out the default value.
public StateSchema() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ public List<String> submit(AlgodClient client) throws Exception {
Response<PostTransactionsResponse> rPost = client.RawTransaction().rawtxn(encoded).execute();

if (!rPost.isSuccessful())
throw new Exception("transaction should be submitted successfully");
throw new Exception("transaction should be submitted successfully cause : " + rPost.message());

this.status = Status.SUBMITTED;
return this.getTxIDs();
Expand Down
Loading

0 comments on commit 6506e97

Please sign in to comment.