Skip to content

Commit

Permalink
Updated protobuf library to include new HAPI response codes.
Browse files Browse the repository at this point in the history
Update reference data in DB - new ResultCode.

Signed-off-by: Mike Burrage <[email protected]>
  • Loading branch information
mike-burrage-hedera authored and steven-sheehy committed Oct 10, 2019
1 parent 09f41ca commit 242d596
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.hedera</groupId>
<artifactId>mirror-node</artifactId>
<version>0.2.0-rc3</version>
<version>0.2.1</version>
<name>Hedera Mirror Node</name>
<description>Hedera Mirror Node mirrors data from Hedera nodes and serves it via an API</description>
<ciManagement>
Expand Down Expand Up @@ -45,7 +45,7 @@
<commons-io.version>2.6</commons-io.version>
<coveralls.version>4.3.0</coveralls.version>
<disruptor.version>3.4.2</disruptor.version>
<hedera-protobuf.version>0.3.4</hedera-protobuf.version>
<hedera-protobuf.version>0.3.5</hedera-protobuf.version>
<hedera-sdk.version>0.5.0</hedera-sdk.version>
<jacoco.version>0.8.4</jacoco.version>
<java.version>11</java.version>
Expand Down
2 changes: 1 addition & 1 deletion rest-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backend",
"version": "1.0.0",
"version": "0.2.1",
"description": "REST API for Hedera mirror node",
"main": "server.js",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/db/migration/V1.11.5.1__response_codes.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
insert into t_transaction_results (proto_id, result)
values (106, 'MAX_CONTRACT_STORAGE_EXCEEDED')
on conflict do nothing;

0 comments on commit 242d596

Please sign in to comment.