Skip to content

Commit

Permalink
Merge pull request #7 from keyko-io/feature/change-blocknumber-to-long
Browse files Browse the repository at this point in the history
Change block number to long
  • Loading branch information
aaitor authored Feb 20, 2020
2 parents c7448eb + 85ec64e commit 459a3bc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>io.keyko.monitoring</groupId>
<artifactId>schemas</artifactId>
<packaging>jar</packaging>
<version>0.2.1</version>
<version>0.2.2</version>
<name>Web3 Monitoring Schemas</name>
<url>https://github.com/keyko-io/web3-monitoring-schemas</url>

Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/avro/BlockDetailsRecord.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"name": "BlockDetailsRecord",
"fields": [{
"name": "number",
"type": "string",
"java-class": "java.math.BigInteger"
"type": "long"
},
{
"name": "hash",
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/avro/EventDetailsRecord.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@
},
{
"name": "blockNumber",
"type": "string",
"java-class": "java.math.BigInteger"
"type": "long"
},
{
"name": "blockHash",
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/avro/TransactionDetailsRecord.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
{
"name": "blockNumber",
"type": "string"
"type": "long"
},
{
"name": "blockHash",
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/avro/ViewDetailsRecord.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@

{
"name": "blockNumber",
"type": "string",
"java-class": "java.math.BigInteger"
"type": "long"
},
{
"name": "blockHash",
Expand Down

0 comments on commit 459a3bc

Please sign in to comment.