-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f989997
commit c9625e7
Showing
15 changed files
with
1,695 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
1,644 changes: 1,644 additions & 0 deletions
1,644
contract/.cache/v/populus/project/compiled_contracts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1520698158.4366739 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
var nodePaths = require('./nodePaths'); | ||
var mylib = require(nodePaths.EBLOCBROKER + '/eBlocBrokerHeader.js'); | ||
var eBlocBroker = require(nodePaths.EBLOCBROKER + '/eBlocBrokerHeader.js'); | ||
|
||
const args = process.argv; | ||
|
||
var setJobStatus = "setJobStatus" | ||
var val = args[2]; | ||
|
||
if( args[2].toString() == "setJobStatus" ){ | ||
mylib.setJobStatus(args[3], args[4], args[5], args[6]); | ||
eBlocBroker.setJobStatus(args[3], args[4], args[5], args[6]); | ||
} | ||
else if( args[2].toString() == "getJobInfo" ){ | ||
console.log('' + mylib.getJobInfo( args[3], args[4], args[5] )); | ||
console.log('' + eBlocBroker.getJobInfo( args[3], args[4], args[5] )); | ||
} | ||
else if( args[2].toString() == "receiptCheck" ){ | ||
mylib.receiptCheck(args[3], args[4], args[5], args[6], args[7], args[8]); | ||
eBlocBroker.receiptCheck(args[3], args[4], args[5], args[6], args[7], args[8]); | ||
} | ||
else if( args[2].toString() == "bs58_encode" ){ | ||
mylib.bs58_encode( args[3] ); | ||
eBlocBroker.bs58_encode( args[3] ); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
var nodePaths = require('./nodePaths'); | ||
var mylib = require(nodePaths.EBLOCBROKER + '/eBlocBrokerHeader.js'); | ||
var eBlocBroker = require(nodePaths.EBLOCBROKER + '/eBlocBrokerHeader.js'); | ||
|
||
console.log('' + mylib.getDeployedBlockNumber()) | ||
console.log('' + eBlocBroker.getDeployedBlockNumber()) | ||
|
||
readFrom = 1799549; //mylib.getDeployedBlockNumber(); | ||
readFrom = 1799549; //eBlocBroker.getDeployedBlockNumber(); | ||
|
||
eBlocBroker.LogReceipt(readFrom, nodePaths.LOG_PATH + '/queuedJobs.txt'); | ||
//eBlocBroker.LogJob(readFrom, nodePaths.LOG_PATH + '/queuedJobs.txt' ); /* Prints jobs, which are not COMPLETED */ | ||
|
||
mylib.LogJob(readFrom, nodePaths.LOG_PATH + '/queuedJobs.txt' ); /* Prints jobs, which are not COMPLETED */ | ||
|
||
//mylib.LogReceipt(readFrom, nodePaths.LOG_PATH + '/queuedJobs.txt'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters