This file contains hidden or 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
| ip-192-168-0-18.us-west-2.compute.internal ➜ hs-time-loop git:(distance) stack run -- double-difference --index-pattern pseudorange-\*-20 -v debug | |
| [Debug] Running with AppConfig: | |
| { | |
| "command": { | |
| "name": "double-difference", | |
| "options": { | |
| "partitionCacheSize": 10000, | |
| "pRQueryOptions": { | |
| "packetType": null, | |
| "scrollOptions": { |
This file contains hidden or 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
| 1,0x55a167d9bA7eca351F117820B8e5e67CF24cf853,bcad381a41d0df8e302cd9ce7360b9585aa1d6b42b2a0b934fab657a665f70df | |
| 2,0x710Ca8595E04F33Aa2067DaffCe51CE7c45d634e,1d239c1ac3ee7f04e3be4b776b9b68c7fcf5b035512dbfde7183a835244b7a25 | |
| 3,0x97cf03aE547905e09492B5B630bc99073B9F8728,c92dafb235b7de7519942104e078b61eb8926640a4e8fa5aa3d77d353244702d | |
| 4,0x5C252fD9cb6aC69FA16682e8ec8A62fb9e0607D8,55e976b6d66aa078fa1d419d81c573ad74bf378ecf9a63e3771bf5dc949ef119 | |
| 5,0x4D10F4F9deB0a8Fa3C50A60a90593B140873C1F0,fd70c1d89f58745b0a3d5f32512ff69bd99fedd17f2d690d7c92553220f784d8 | |
| 9998,0x247bc4842282248309BDcDf173321628094d8da2,3afc63a918349ffb9ab7b74225bae2d9bc3f7ac1423e3087e5fc3a19bed62d3f | |
| 9999,0xE43F454925a7512dFF5242a0fdCDAd2871e55FcF,6511da91f47f10bbba1954ec1a7a65d1cf08556b9c861a435c3e3dbcd5c0ce81 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| contract TokenControllerI { | |
| function transferAllowed(address _from, address _to) external view returns (bool); | |
| } | |
| contract TokenController is TokenControllerI{ | |
| uint MIN_COUNT = 10; // this should be _from specific | |
| address tokenContract = 0xabba; | |
| address registryContract = 0xdeadbeef; |
This file contains hidden or 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
| contract TokenControllerI { | |
| function transferAllowed(address _from, address _to) external view returns (bool); | |
| } | |
| contract TokenController is TokenControllerI{ | |
| uint MIN_COUNT = 10; // this should be _from specific | |
| address tokenContract = 0xabba; | |
| address registryContract = 0xdeadbeef; |
This file contains hidden or 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
| contract Application { | |
| event _Application(bytes32 listingHash, uint deposit, string data); | |
| function triggerApplication() { | |
| _Application( 0x9999 | |
| , 1234 | |
| , "QmdanmX73Pq8NCBgNDtJRfr6ppidiPrLodEbiUvn4A1nMF" | |
| ); |
This file contains hidden or 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
| contract Owned { | |
| address owner; | |
| modifier onlyOwner () { | |
| if(msg.sender == owner) { | |
| _; | |
| } else { | |
| throw; |
This file contains hidden or 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
| license: mit |
This file contains hidden or 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
| license: mit |
NewerOlder