Skip to content

Commit

Permalink
Merge pull request #181 from RiseVision/fix/negative-timestamp
Browse files Browse the repository at this point in the history
fix timestamp check
  • Loading branch information
vekexasia committed Jun 2, 2018
2 parents d320d6d + 944a351 commit 5184212
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etc/mainnet/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"port": 5555,
"address": "0.0.0.0",
"version": "1.0.1",
"version": "1.0.2",
"minVersion": ">=0.1.2",
"fileLogLevel": "info",
"logFileName": "logs/rise-master.log",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Rise-node",
"version": "1.0.0",
"version": "1.0.2",
"private": true,
"scripts": {
"start": "node app.js",
Expand Down
1 change: 1 addition & 0 deletions src/schema/logic/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export default {
},
timestamp : {
type: 'integer',
minimum: 0,
},
senderPublicKey : {
type : 'string',
Expand Down

0 comments on commit 5184212

Please sign in to comment.