From 8133a672e8f5c5a0c9ef5860e9e5043186707145 Mon Sep 17 00:00:00 2001 From: BokkyPooBah Date: Sun, 24 Feb 2019 23:44:02 +1100 Subject: [PATCH] Remove `initialized` and `init(...)` #4 --- contracts/BokkyPoobahsRedBlackTreeLibrary.sol | 7 - contracts/TestBokkyPoobahsRedBlackTree.sol | 1 - contracts/TestBokkyPoobahsRedBlackTreeRaw.sol | 1 - ...tBokkyPooBahsRedBlackTreeRaw_flattened.sol | 8 - test/BokkyPoobahsRedBlackTreeLibrary.sol | 7 - test/TestBokkyPooBahsRedBlackTreeRaw.js | 4 +- test/TestBokkyPoobahsRedBlackTree.sol | 1 - test/TestBokkyPoobahsRedBlackTreeRaw.sol | 1 - test/deploymentData.js | 4 +- test/test1output.txt | 152 +++++++++--------- test/test1results.txt | 140 ++++++++-------- 11 files changed, 150 insertions(+), 176 deletions(-) diff --git a/contracts/BokkyPoobahsRedBlackTreeLibrary.sol b/contracts/BokkyPoobahsRedBlackTreeLibrary.sol index 031ae06..72e5ac8 100644 --- a/contracts/BokkyPoobahsRedBlackTreeLibrary.sol +++ b/contracts/BokkyPoobahsRedBlackTreeLibrary.sol @@ -24,19 +24,12 @@ library BokkyPooBahsRedBlackTreeLibrary { struct Tree { uint root; mapping(uint => Node) nodes; - bool initialised; } uint private constant SENTINEL = 0; event Log(string where, string action, uint key, uint parent, uint left, uint right, bool red); - function init(Tree storage self) internal { - require(!self.initialised); - self.root = SENTINEL; - self.nodes[SENTINEL] = Node(SENTINEL, SENTINEL, SENTINEL, false); - self.initialised = true; - } function first(Tree storage self) internal view returns (uint _key) { _key = self.root; while (_key != SENTINEL && self.nodes[_key].left != SENTINEL) { diff --git a/contracts/TestBokkyPoobahsRedBlackTree.sol b/contracts/TestBokkyPoobahsRedBlackTree.sol index 17050e7..5be2656 100644 --- a/contracts/TestBokkyPoobahsRedBlackTree.sol +++ b/contracts/TestBokkyPoobahsRedBlackTree.sol @@ -25,7 +25,6 @@ contract TestBokkyPooBahsRedBlackTree { event Log(string where, string action, uint key, uint parent, uint left, uint right, bool red); constructor() public { - tree.init(); } function root() public view returns (uint _key) { _key = tree.root; diff --git a/contracts/TestBokkyPoobahsRedBlackTreeRaw.sol b/contracts/TestBokkyPoobahsRedBlackTreeRaw.sol index 6ce9e93..7fa4c9e 100644 --- a/contracts/TestBokkyPoobahsRedBlackTreeRaw.sol +++ b/contracts/TestBokkyPoobahsRedBlackTreeRaw.sol @@ -24,7 +24,6 @@ contract TestBokkyPooBahsRedBlackTreeRaw { event Log(string where, string action, uint key, uint parent, uint left, uint right, bool red); constructor() public { - tree.init(); } function root() public view returns (uint _key) { _key = tree.root; diff --git a/flattened/TestBokkyPooBahsRedBlackTreeRaw_flattened.sol b/flattened/TestBokkyPooBahsRedBlackTreeRaw_flattened.sol index defffb9..ce164de 100644 --- a/flattened/TestBokkyPooBahsRedBlackTreeRaw_flattened.sol +++ b/flattened/TestBokkyPooBahsRedBlackTreeRaw_flattened.sol @@ -25,19 +25,12 @@ library BokkyPooBahsRedBlackTreeLibrary { struct Tree { uint root; mapping(uint => Node) nodes; - bool initialised; } uint private constant SENTINEL = 0; event Log(string where, string action, uint key, uint parent, uint left, uint right, bool red); - function init(Tree storage self) internal { - require(!self.initialised); - self.root = SENTINEL; - self.nodes[SENTINEL] = Node(SENTINEL, SENTINEL, SENTINEL, false); - self.initialised = true; - } function first(Tree storage self) internal view returns (uint _key) { _key = self.root; while (_key != SENTINEL && self.nodes[_key].left != SENTINEL) { @@ -398,7 +391,6 @@ contract TestBokkyPooBahsRedBlackTreeRaw { event Log(string where, string action, uint key, uint parent, uint left, uint right, bool red); constructor() public { - tree.init(); } function root() public view returns (uint _key) { _key = tree.root; diff --git a/test/BokkyPoobahsRedBlackTreeLibrary.sol b/test/BokkyPoobahsRedBlackTreeLibrary.sol index 031ae06..72e5ac8 100644 --- a/test/BokkyPoobahsRedBlackTreeLibrary.sol +++ b/test/BokkyPoobahsRedBlackTreeLibrary.sol @@ -24,19 +24,12 @@ library BokkyPooBahsRedBlackTreeLibrary { struct Tree { uint root; mapping(uint => Node) nodes; - bool initialised; } uint private constant SENTINEL = 0; event Log(string where, string action, uint key, uint parent, uint left, uint right, bool red); - function init(Tree storage self) internal { - require(!self.initialised); - self.root = SENTINEL; - self.nodes[SENTINEL] = Node(SENTINEL, SENTINEL, SENTINEL, false); - self.initialised = true; - } function first(Tree storage self) internal view returns (uint _key) { _key = self.root; while (_key != SENTINEL && self.nodes[_key].left != SENTINEL) { diff --git a/test/TestBokkyPooBahsRedBlackTreeRaw.js b/test/TestBokkyPooBahsRedBlackTreeRaw.js index b1b0426..849536a 100644 --- a/test/TestBokkyPooBahsRedBlackTreeRaw.js +++ b/test/TestBokkyPooBahsRedBlackTreeRaw.js @@ -4,12 +4,12 @@ var testRawOutput={ "BokkyPooBahsRedBlackTreeLibrary.sol:BokkyPooBahsRedBlackTreeLibrary" : { "abi" : "[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"name\":\"where\",\"type\":\"string\"},{\"indexed\":false,\"name\":\"action\",\"type\":\"string\"},{\"indexed\":false,\"name\":\"key\",\"type\":\"uint256\"},{\"indexed\":false,\"name\":\"parent\",\"type\":\"uint256\"},{\"indexed\":false,\"name\":\"left\",\"type\":\"uint256\"},{\"indexed\":false,\"name\":\"right\",\"type\":\"uint256\"},{\"indexed\":false,\"name\":\"red\",\"type\":\"bool\"}],\"name\":\"Log\",\"type\":\"event\"}]", - "bin" : "604c602c600b82828239805160001a60731460008114601c57601e565bfe5b5030600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea165627a7a7230582015f0a71aff5cf536ddf763aa9485f42f1714f4b377759d71410a49719a7648e00029" + "bin" : "604c602c600b82828239805160001a60731460008114601c57601e565bfe5b5030600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea165627a7a723058200d6236429e5cb2399fed2592a3b21f19a746ba321c08ee2e4a28274362d406b90029" }, "TestBokkyPooBahsRedBlackTreeRaw.sol:TestBokkyPooBahsRedBlackTreeRaw" : { "abi" : "[{\"constant\":true,\"inputs\":[{\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"prev\",\"outputs\":[{\"name\":\"_key\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"first\",\"outputs\":[{\"name\":\"_key\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"last\",\"outputs\":[{\"name\":\"_key\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"_key\",\"type\":\"uint256\"}],\"name\":\"remove\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"parent\",\"outputs\":[{\"name\":\"_parent\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"_key\",\"type\":\"uint256\"}],\"name\":\"getNode\",\"outputs\":[{\"name\":\"key\",\"type\":\"uint256\"},{\"name\":\"parent\",\"type\":\"uint256\"},{\"name\":\"left\",\"type\":\"uint256\"},{\"name\":\"right\",\"type\":\"uint256\"},{\"name\":\"red\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"exists\",\"outputs\":[{\"name\":\"_exists\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"sibling\",\"outputs\":[{\"name\":\"_parent\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"uncle\",\"outputs\":[{\"name\":\"_parent\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"_key\",\"type\":\"uint256\"}],\"name\":\"insert\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"grandparent\",\"outputs\":[{\"name\":\"_grandparent\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"root\",\"outputs\":[{\"name\":\"_key\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"next\",\"outputs\":[{\"name\":\"_key\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"name\":\"where\",\"type\":\"string\"},{\"indexed\":false,\"name\":\"action\",\"type\":\"string\"},{\"indexed\":false,\"name\":\"key\",\"type\":\"uint256\"},{\"indexed\":false,\"name\":\"parent\",\"type\":\"uint256\"},{\"indexed\":false,\"name\":\"left\",\"type\":\"uint256\"},{\"indexed\":false,\"name\":\"right\",\"type\":\"uint256\"},{\"indexed\":false,\"name\":\"red\",\"type\":\"bool\"}],\"name\":\"Log\",\"type\":\"event\"}]", - "bin" : "608060405234801561001057600080fd5b5061002860006401000000006113d361002d82021704565b6100aa565b600281015460ff161561003f57600080fd5b600080825560408051608081018252828152602080820184815282840185815260608401868152868052600180890190945294909520925183555182820155925160028083019190915591516003909101805491151560ff1992831617905592018054909216179055565b61147c806100b96000396000f3fe608060405234801561001057600080fd5b50600436106100ec576000357c0100000000000000000000000000000000000000000000000000000000900480634f558e79116100a957806390b5561d1161008357806390b5561d14610221578063c0a4d38f1461023e578063ebf0c7171461025b578063edd004e514610263576100ec565b80634f558e79146101b657806365e92143146101e757806383af31b914610204576100ec565b806335671214146100f15780633df4ddf41461012057806347799da8146101285780634cc82215146101305780634eaa9d221461014f5780634f0f4aa91461016c575b600080fd5b61010e6004803603602081101561010757600080fd5b5035610280565b60408051918252519081900360200190f35b61010e610298565b61010e6102a9565b61014d6004803603602081101561014657600080fd5b50356102b5565b005b61010e6004803603602081101561016557600080fd5b50356102c9565b6101896004803603602081101561018257600080fd5b50356102db565b60408051958652602086019490945284840192909252606084015215156080830152519081900360a00190f35b6101d3600480360360208110156101cc57600080fd5b5035610303565b604080519115158252519081900360200190f35b61010e600480360360208110156101fd57600080fd5b5035610315565b61010e6004803603602081101561021a57600080fd5b5035610327565b61014d6004803603602081101561023757600080fd5b5035610339565b61010e6004803603602081101561025457600080fd5b503561034a565b61010e61035c565b61010e6004803603602081101561027957600080fd5b5035610362565b6000610292818363ffffffff61037416565b92915050565b60006102a46000610413565b905090565b60006102a4600061045a565b6102c660008263ffffffff61049c16565b50565b6000610292818363ffffffff61073716565b6000808080806102f1818763ffffffff61075b16565b939a9299509097509550909350915050565b6000610292818363ffffffff6107ad16565b6000610292818363ffffffff6107e116565b6000610292818363ffffffff61086416565b6102c660008263ffffffff6108a916565b6000610292818363ffffffff6109d216565b60005490565b6000610292818363ffffffff610a0f16565b600081151561038257600080fd5b6000828152600180850160205260409091200154156103c15760008281526001808501602052604090912001546103ba908490610aa7565b9050610292565b5060008181526001830160205260409020545b80158015906103f55750600081815260018085016020526040909120015482145b156102925760008181526001840160205260409020549091506103d4565b80545b80158015906104375750600081815260018084016020526040909120015415155b15610455576000908152600180830160205260409091200154610416565b919050565b80545b801580159061047e5750600081815260018301602052604090206002015415155b1561045557600090815260018201602052604090206002015461045d565b8015156104a857600080fd5b60008083600001548314806104d85750835483148015906104d85750600083815260018501602052604090205415155b15156104e357600080fd5b6000838152600180860160205260409091200154158061051457506000838152600185016020526040902060020154155b15610520575081610568565b5060008281526001840160205260409020600201545b600081815260018086016020526040909120015415610568576000908152600180850160205260409091200154610536565b60008181526001808601602052604090912001541561059c57600081815260018086016020526040909120015491506105b3565b600081815260018501602052604090206002015491505b600081815260018501602052604080822054848352912081905580156106255760008181526001808701602052604090912001548214156106095760008181526001808701602052604090912001839055610620565b600081815260018601602052604090206002018390555b610629565b8285555b600082815260018601602052604090206003015460ff16158483146106b357610653868487610ae4565b60008581526001878101602052604080832080830154878552828520938401819055845281842087905560028082015490840181905584529083208690556003908101549286905201805460ff191660ff90921615159190911790559193915b80156106c3576106c38685610b60565b6000808052600187016020526040902054156107075760008080526001808801602052604082208281559081018290556002810191909155600301805460ff191690555b5050600090815260019384016020526040812081815593840181905560028401555050600301805460ff19169055565b600081151561074557600080fd5b5060009081526001909101602052604090205490565b600080600080600061076d87876107ad565b151561077857600080fd5b505050600083815260019485016020526040902080549481015460028201546003909201549496909491935060ff9091169150565b600081156107d85782548214806103ba57505060008181526001830160205260409020541515610292565b50600092915050565b60008115156107ef57600080fd5b6000828152600184016020526040902054801561085857600081815260018086016020526040909120015483141561083c5760008181526001850160205260409020600201549150610853565b600081815260018086016020526040909120015491505b61085d565b600091505b5092915050565b600081151561087257600080fd5b600061087e84846109d2565b905080156108585760008381526001850160205260409020546108a185826107e1565b92505061085d565b8015156108b557600080fd5b815460009081905b801561091257809150808410156108e757600090815260018086016020526040909120015461090d565b808414156108f85760019250610912565b60009081526001850160205260409020600201545b6108bd565b821561091d57600080fd5b60408051608081018252838152600060208083018281528385018381526001606086018181528b86528c82019094529590932093518455519383019390935551600282015590516003909101805460ff1916911515919091179055811515610987578385556109c1565b818410156109aa57600082815260018087016020526040909120018490556109c1565b600082815260018601602052604090206002018490555b6109cb8585610f7f565b5050505050565b60008115156109e057600080fd5b60008281526001840160205260409020548015610858576000818152600185016020526040902054915061085d565b6000811515610a1d57600080fd5b600082815260018401602052604090206002015415610a555760008281526001840160205260409020600201546103ba9084906111ea565b5060008181526001830160205260409020545b8015801590610a895750600081815260018401602052604090206002015482145b15610292576000818152600184016020526040902054909150610a68565b60005b600082815260018401602052604090206002015415610ade5760009182526001830160205260409091206002015490610aaa565b50919050565b6000818152600184016020526040808220548483529120819055801515610b0d57828455610b5a565b6000818152600180860160205260409091200154821415610b435760008181526001808601602052604090912001839055610b5a565b600081815260018501602052604090206002018390555b50505050565b60005b82548214801590610b885750600082815260018401602052604090206003015460ff16155b15610f60576000828152600180850160205260408083205480845292200154831415610d875760008181526001850160205260408082206002015480835291206003015490925060ff1615610c2c576000828152600180860160205260408083206003908101805460ff19908116909155858552919093209092018054909216179055610c158482611222565b600081815260018501602052604090206002015491505b60008281526001808601602052604080832090910154825290206003015460ff16158015610c775750600082815260018501602052604080822060020154825290206003015460ff16155b15610ca457600082815260018581016020526040909120600301805460ff19169091179055915081610d82565b600082815260018501602052604080822060020154825290206003015460ff161515610d23576000828152600180860160205260408083208083015484529083206003908101805460ff1990811690915593869052018054909216179055610d0c84836112fc565b600081815260018501602052604090206002015491505b600081815260018501602052604080822060039081018054868552838520808401805460ff909316151560ff199384161790558254821690925560029091015484529190922090910180549091169055610d7d8482611222565b835492505b610f5a565b6000818152600180860160205260408083209091015480835291206003015490925060ff1615610e06576000828152600180860160205260408083206003908101805460ff19908116909155858552919093209092018054909216179055610def84826112fc565b600081815260018086016020526040909120015491505b600082815260018501602052604080822060020154825290206003015460ff16158015610e51575060008281526001808601602052604080832090910154825290206003015460ff16155b15610e7e57600082815260018581016020526040909120600301805460ff19169091179055915081610f5a565b60008281526001808601602052604080832090910154825290206003015460ff161515610eff57600082815260018086016020526040808320600281015484529083206003908101805460ff1990811690915593869052018054909216179055610ee88483611222565b600081815260018086016020526040909120015491505b60008181526001808601602052604080832060039081018054878652838620808401805460ff909316151560ff19938416179055825482169092559301548452922090910180549091169055610f5584826112fc565b835492505b50610b63565b506000908152600190910160205260409020600301805460ff19169055565b60005b82548214801590610fac5750600082815260018401602052604080822054825290206003015460ff165b156111c85760008281526001808501602052604080832054808452818420548452922001548114156110cf5760008181526001850160205260408082205482528082206002015480835291206003015490925060ff1615611055576000818152600180860160205260408083206003808201805460ff199081169091558786528386208201805482169055825486529285200180549092169092179055908290525492506110ca565b600081815260018501602052604090206002015483141561107d5780925061107d8484611222565b50600082815260018085016020526040808320548084528184206003808201805460ff199081169091558254875293862001805490931690931790915591829052546110ca9085906112fc565b6111c2565b6000818152600180860160205260408083205483528083209091015480835291206003015490925060ff161561114d576000818152600180860160205260408083206003808201805460ff199081169091558786528386208201805482169055825486529285200180549092169092179055908290525492506111c2565b60008181526001808601602052604090912001548314156111755780925061117584846112fc565b50600082815260018085016020526040808320548084528184206003808201805460ff199081169091558254875293862001805490931690931790915591829052546111c2908590611222565b50610f82565b505080546000908152600190910160205260409020600301805460ff19169055565b60005b600082815260018085016020526040909120015415610ade5760009182526001808401602052604090922090910154906111ed565b60008181526001808401602052604080832060028101805491548286529285209093015493859052918390559091801561126a57600081815260018601602052604090208490555b6000838152600186016020526040902082905581151561128c578285556112d9565b60008281526001808701602052604090912001548414156112c257600082815260018087016020526040909120018390556112d9565b600082815260018601602052604090206002018390555b505060008181526001938401602052604080822090940183905591825291902055565b6000818152600180840160205260408083209182018054925483855291842060020154938590528390559091801561134257600081815260018601602052604090208490555b60008381526001860160205260409020829055811515611364578285556113b1565b600082815260018601602052604090206002015484141561139a57600082815260018601602052604090206002018390556113b1565b600082815260018087016020526040909120018390555b5050600081815260019093016020526040808420600201839055918352912055565b600281015460ff16156113e557600080fd5b600080825560408051608081018252828152602080820184815282840185815260608401868152868052600180890190945294909520925183555182820155925160028083019190915591516003909101805491151560ff199283161790559201805490921617905556fea165627a7a723058201fd23a22e439222b6229351451e064dd073a433e02ed673c3cd42d0b558049d90029" + "bin" : "608060405234801561001057600080fd5b506113ff806100206000396000f3fe608060405234801561001057600080fd5b50600436106100ec576000357c0100000000000000000000000000000000000000000000000000000000900480634f558e79116100a957806390b5561d1161008357806390b5561d14610221578063c0a4d38f1461023e578063ebf0c7171461025b578063edd004e514610263576100ec565b80634f558e79146101b657806365e92143146101e757806383af31b914610204576100ec565b806335671214146100f15780633df4ddf41461012057806347799da8146101285780634cc82215146101305780634eaa9d221461014f5780634f0f4aa91461016c575b600080fd5b61010e6004803603602081101561010757600080fd5b5035610280565b60408051918252519081900360200190f35b61010e610298565b61010e6102a9565b61014d6004803603602081101561014657600080fd5b50356102b5565b005b61010e6004803603602081101561016557600080fd5b50356102c9565b6101896004803603602081101561018257600080fd5b50356102db565b60408051958652602086019490945284840192909252606084015215156080830152519081900360a00190f35b6101d3600480360360208110156101cc57600080fd5b5035610303565b604080519115158252519081900360200190f35b61010e600480360360208110156101fd57600080fd5b5035610315565b61010e6004803603602081101561021a57600080fd5b5035610327565b61014d6004803603602081101561023757600080fd5b5035610339565b61010e6004803603602081101561025457600080fd5b503561034a565b61010e61035c565b61010e6004803603602081101561027957600080fd5b5035610362565b6000610292818363ffffffff61037416565b92915050565b60006102a46000610413565b905090565b60006102a4600061045a565b6102c660008263ffffffff61049c16565b50565b6000610292818363ffffffff61073716565b6000808080806102f1818763ffffffff61075b16565b939a9299509097509550909350915050565b6000610292818363ffffffff6107ad16565b6000610292818363ffffffff6107e116565b6000610292818363ffffffff61086416565b6102c660008263ffffffff6108a916565b6000610292818363ffffffff6109d216565b60005490565b6000610292818363ffffffff610a0f16565b600081151561038257600080fd5b6000828152600180850160205260409091200154156103c15760008281526001808501602052604090912001546103ba908490610aa7565b9050610292565b5060008181526001830160205260409020545b80158015906103f55750600081815260018085016020526040909120015482145b156102925760008181526001840160205260409020549091506103d4565b80545b80158015906104375750600081815260018084016020526040909120015415155b15610455576000908152600180830160205260409091200154610416565b919050565b80545b801580159061047e5750600081815260018301602052604090206002015415155b1561045557600090815260018201602052604090206002015461045d565b8015156104a857600080fd5b60008083600001548314806104d85750835483148015906104d85750600083815260018501602052604090205415155b15156104e357600080fd5b6000838152600180860160205260409091200154158061051457506000838152600185016020526040902060020154155b15610520575081610568565b5060008281526001840160205260409020600201545b600081815260018086016020526040909120015415610568576000908152600180850160205260409091200154610536565b60008181526001808601602052604090912001541561059c57600081815260018086016020526040909120015491506105b3565b600081815260018501602052604090206002015491505b600081815260018501602052604080822054848352912081905580156106255760008181526001808701602052604090912001548214156106095760008181526001808701602052604090912001839055610620565b600081815260018601602052604090206002018390555b610629565b8285555b600082815260018601602052604090206003015460ff16158483146106b357610653868487610ae4565b60008581526001878101602052604080832080830154878552828520938401819055845281842087905560028082015490840181905584529083208690556003908101549286905201805460ff191660ff90921615159190911790559193915b80156106c3576106c38685610b60565b6000808052600187016020526040902054156107075760008080526001808801602052604082208281559081018290556002810191909155600301805460ff191690555b5050600090815260019384016020526040812081815593840181905560028401555050600301805460ff19169055565b600081151561074557600080fd5b5060009081526001909101602052604090205490565b600080600080600061076d87876107ad565b151561077857600080fd5b505050600083815260019485016020526040902080549481015460028201546003909201549496909491935060ff9091169150565b600081156107d85782548214806103ba57505060008181526001830160205260409020541515610292565b50600092915050565b60008115156107ef57600080fd5b6000828152600184016020526040902054801561085857600081815260018086016020526040909120015483141561083c5760008181526001850160205260409020600201549150610853565b600081815260018086016020526040909120015491505b61085d565b600091505b5092915050565b600081151561087257600080fd5b600061087e84846109d2565b905080156108585760008381526001850160205260409020546108a185826107e1565b92505061085d565b8015156108b557600080fd5b815460009081905b801561091257809150808410156108e757600090815260018086016020526040909120015461090d565b808414156108f85760019250610912565b60009081526001850160205260409020600201545b6108bd565b821561091d57600080fd5b60408051608081018252838152600060208083018281528385018381526001606086018181528b86528c82019094529590932093518455519383019390935551600282015590516003909101805460ff1916911515919091179055811515610987578385556109c1565b818410156109aa57600082815260018087016020526040909120018490556109c1565b600082815260018601602052604090206002018490555b6109cb8585610f7f565b5050505050565b60008115156109e057600080fd5b60008281526001840160205260409020548015610858576000818152600185016020526040902054915061085d565b6000811515610a1d57600080fd5b600082815260018401602052604090206002015415610a555760008281526001840160205260409020600201546103ba9084906111ea565b5060008181526001830160205260409020545b8015801590610a895750600081815260018401602052604090206002015482145b15610292576000818152600184016020526040902054909150610a68565b60005b600082815260018401602052604090206002015415610ade5760009182526001830160205260409091206002015490610aaa565b50919050565b6000818152600184016020526040808220548483529120819055801515610b0d57828455610b5a565b6000818152600180860160205260409091200154821415610b435760008181526001808601602052604090912001839055610b5a565b600081815260018501602052604090206002018390555b50505050565b60005b82548214801590610b885750600082815260018401602052604090206003015460ff16155b15610f60576000828152600180850160205260408083205480845292200154831415610d875760008181526001850160205260408082206002015480835291206003015490925060ff1615610c2c576000828152600180860160205260408083206003908101805460ff19908116909155858552919093209092018054909216179055610c158482611222565b600081815260018501602052604090206002015491505b60008281526001808601602052604080832090910154825290206003015460ff16158015610c775750600082815260018501602052604080822060020154825290206003015460ff16155b15610ca457600082815260018581016020526040909120600301805460ff19169091179055915081610d82565b600082815260018501602052604080822060020154825290206003015460ff161515610d23576000828152600180860160205260408083208083015484529083206003908101805460ff1990811690915593869052018054909216179055610d0c84836112fc565b600081815260018501602052604090206002015491505b600081815260018501602052604080822060039081018054868552838520808401805460ff909316151560ff199384161790558254821690925560029091015484529190922090910180549091169055610d7d8482611222565b835492505b610f5a565b6000818152600180860160205260408083209091015480835291206003015490925060ff1615610e06576000828152600180860160205260408083206003908101805460ff19908116909155858552919093209092018054909216179055610def84826112fc565b600081815260018086016020526040909120015491505b600082815260018501602052604080822060020154825290206003015460ff16158015610e51575060008281526001808601602052604080832090910154825290206003015460ff16155b15610e7e57600082815260018581016020526040909120600301805460ff19169091179055915081610f5a565b60008281526001808601602052604080832090910154825290206003015460ff161515610eff57600082815260018086016020526040808320600281015484529083206003908101805460ff1990811690915593869052018054909216179055610ee88483611222565b600081815260018086016020526040909120015491505b60008181526001808601602052604080832060039081018054878652838620808401805460ff909316151560ff19938416179055825482169092559301548452922090910180549091169055610f5584826112fc565b835492505b50610b63565b506000908152600190910160205260409020600301805460ff19169055565b60005b82548214801590610fac5750600082815260018401602052604080822054825290206003015460ff165b156111c85760008281526001808501602052604080832054808452818420548452922001548114156110cf5760008181526001850160205260408082205482528082206002015480835291206003015490925060ff1615611055576000818152600180860160205260408083206003808201805460ff199081169091558786528386208201805482169055825486529285200180549092169092179055908290525492506110ca565b600081815260018501602052604090206002015483141561107d5780925061107d8484611222565b50600082815260018085016020526040808320548084528184206003808201805460ff199081169091558254875293862001805490931690931790915591829052546110ca9085906112fc565b6111c2565b6000818152600180860160205260408083205483528083209091015480835291206003015490925060ff161561114d576000818152600180860160205260408083206003808201805460ff199081169091558786528386208201805482169055825486529285200180549092169092179055908290525492506111c2565b60008181526001808601602052604090912001548314156111755780925061117584846112fc565b50600082815260018085016020526040808320548084528184206003808201805460ff199081169091558254875293862001805490931690931790915591829052546111c2908590611222565b50610f82565b505080546000908152600190910160205260409020600301805460ff19169055565b60005b600082815260018085016020526040909120015415610ade5760009182526001808401602052604090922090910154906111ed565b60008181526001808401602052604080832060028101805491548286529285209093015493859052918390559091801561126a57600081815260018601602052604090208490555b6000838152600186016020526040902082905581151561128c578285556112d9565b60008281526001808701602052604090912001548414156112c257600082815260018087016020526040909120018390556112d9565b600082815260018601602052604090206002018390555b505060008181526001938401602052604080822090940183905591825291902055565b6000818152600180840160205260408083209182018054925483855291842060020154938590528390559091801561134257600081815260018601602052604090208490555b60008381526001860160205260409020829055811515611364578285556113b1565b600082815260018601602052604090206002015484141561139a57600082815260018601602052604090206002018390556113b1565b600082815260018087016020526040909120018390555b505060008181526001909301602052604080842060020183905591835291205556fea165627a7a723058202add1996bc1a7136e121365664c2f5c99845e9aab42b294e7755aebdace6bb810029" } }, "version" : "0.5.4+commit.9549d8ff.Darwin.appleclang" diff --git a/test/TestBokkyPoobahsRedBlackTree.sol b/test/TestBokkyPoobahsRedBlackTree.sol index 17050e7..5be2656 100644 --- a/test/TestBokkyPoobahsRedBlackTree.sol +++ b/test/TestBokkyPoobahsRedBlackTree.sol @@ -25,7 +25,6 @@ contract TestBokkyPooBahsRedBlackTree { event Log(string where, string action, uint key, uint parent, uint left, uint right, bool red); constructor() public { - tree.init(); } function root() public view returns (uint _key) { _key = tree.root; diff --git a/test/TestBokkyPoobahsRedBlackTreeRaw.sol b/test/TestBokkyPoobahsRedBlackTreeRaw.sol index 6ce9e93..7fa4c9e 100644 --- a/test/TestBokkyPoobahsRedBlackTreeRaw.sol +++ b/test/TestBokkyPoobahsRedBlackTreeRaw.sol @@ -24,7 +24,6 @@ contract TestBokkyPooBahsRedBlackTreeRaw { event Log(string where, string action, uint key, uint parent, uint left, uint right, bool red); constructor() public { - tree.init(); } function root() public view returns (uint _key) { _key = tree.root; diff --git a/test/deploymentData.js b/test/deploymentData.js index 8abb704..28a8445 100644 --- a/test/deploymentData.js +++ b/test/deploymentData.js @@ -4,7 +4,7 @@ var wallet="0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976"; var user1="0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0"; var user2="0xa44a08d3f6933c69212114bb66e2df1813651844"; var user3="0xa55a151eb00fded1634d27d1127b4be4627079ea"; -var testRawAddress="0x7b41d3c2494ed063d5555a1e3269cff3bc41f16a"; +var testRawAddress="0x3708ad6abbe680fc9ad5e49fa3eb177f24b1870d"; var testRawAbi=[{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"prev","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"first","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"last","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_key","type":"uint256"}],"name":"remove","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"parent","outputs":[{"name":"_parent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_key","type":"uint256"}],"name":"getNode","outputs":[{"name":"key","type":"uint256"},{"name":"parent","type":"uint256"},{"name":"left","type":"uint256"},{"name":"right","type":"uint256"},{"name":"red","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"exists","outputs":[{"name":"_exists","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"sibling","outputs":[{"name":"_parent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"uncle","outputs":[{"name":"_parent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_key","type":"uint256"}],"name":"insert","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"grandparent","outputs":[{"name":"_grandparent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"root","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"next","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"where","type":"string"},{"indexed":false,"name":"action","type":"string"},{"indexed":false,"name":"key","type":"uint256"},{"indexed":false,"name":"parent","type":"uint256"},{"indexed":false,"name":"left","type":"uint256"},{"indexed":false,"name":"right","type":"uint256"},{"indexed":false,"name":"red","type":"bool"}],"name":"Log","type":"event"}]; var testRaw=eth.contract(testRawAbi).at(testRawAddress); -testRawAddress=0x7b41d3c2494ed063d5555a1e3269cff3bc41f16a +testRawAddress=0x3708ad6abbe680fc9ad5e49fa3eb177f24b1870d diff --git a/test/test1output.txt b/test/test1output.txt index 4a1f98e..8703202 100644 --- a/test/test1output.txt +++ b/test/test1output.txt @@ -25,9 +25,9 @@ TEST3RESULTS=test3results.txt TEST4OUTPUT=test4output.txt TEST4RESULTS=test4results.txt -CURRENTTIME = '1551011481' 'Sun 24 Feb 2019 12:31:21 UTC' -START_DATE = '1551011631' 'Sun 24 Feb 2019 12:33:51 UTC' -END_DATE = '1551011721' 'Sun 24 Feb 2019 12:35:21 UTC' +CURRENTTIME = '1551012131' 'Sun 24 Feb 2019 12:42:11 UTC' +START_DATE = '1551012281' 'Sun 24 Feb 2019 12:44:41 UTC' +END_DATE = '1551012371' 'Sun 24 Feb 2019 12:46:11 UTC' solc, the solidity compiler commandline interface Version: 0.5.4+commit.9549d8ff.Darwin.appleclang contractsdir: ../contracts @@ -41,7 +41,7 @@ Welcome to the Geth JavaScript console! instance: Geth/v1.8.23-stable-c9427004/darwin-amd64/go1.11.5 coinbase: 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e -at block: 1883 (Sun, 24 Feb 2019 23:31:21 AEDT) +at block: 2534 (Sun, 24 Feb 2019 23:42:12 AEDT) datadir: /Users/bok/Projects/BokkyPooBahsRedBlackTreeLibrary/test/testchain modules: admin:1.0 clique:1.0 debug:1.0 eth:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 shh:1.0 txpool:1.0 web3:1.0 @@ -127,19 +127,19 @@ undefined ... undefined > -DATA: var testRawAddress="0x7b41d3c2494ed063d5555a1e3269cff3bc41f16a"; +DATA: var testRawAddress="0x3708ad6abbe680fc9ad5e49fa3eb177f24b1870d"; DATA: var testRawAbi=[{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"prev","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"first","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"last","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_key","type":"uint256"}],"name":"remove","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"parent","outputs":[{"name":"_parent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_key","type":"uint256"}],"name":"getNode","outputs":[{"name":"key","type":"uint256"},{"name":"parent","type":"uint256"},{"name":"left","type":"uint256"},{"name":"right","type":"uint256"},{"name":"red","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"exists","outputs":[{"name":"_exists","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"sibling","outputs":[{"name":"_parent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"uncle","outputs":[{"name":"_parent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_key","type":"uint256"}],"name":"insert","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"grandparent","outputs":[{"name":"_grandparent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"root","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"key","type":"uint256"}],"name":"next","outputs":[{"name":"_key","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"where","type":"string"},{"indexed":false,"name":"action","type":"string"},{"indexed":false,"name":"key","type":"uint256"},{"indexed":false,"name":"parent","type":"uint256"},{"indexed":false,"name":"left","type":"uint256"},{"indexed":false,"name":"right","type":"uint256"},{"indexed":false,"name":"red","type":"bool"}],"name":"Log","type":"event"}]; DATA: var testRaw=eth.contract(testRawAbi).at(testRawAddress); -DATA: testRawAddress=0x7b41d3c2494ed063d5555a1e3269cff3bc41f16a +DATA: testRawAddress=0x3708ad6abbe680fc9ad5e49fa3eb177f24b1870d RESULT: # Account EtherBalanceChange Token Name RESULT: -- ------------------------------------------ --------------------------- ------------------------------ --------------------------- -RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.003008334000000000 0.000000000000000000 Miner -RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.003008334000000000 0.000000000000000000 Deployer +RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.002830146000000000 0.000000000000000000 Miner +RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.002830146000000000 0.000000000000000000 Deployer RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Wallet RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 User1 RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 User2 RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 User3 -RESULT: 6 0x7b41d3c2494ed063d5555a1e3269cff3bc41f16a 0.000000000000000000 0.000000000000000000 TestRaw +RESULT: 6 0x3708ad6abbe680fc9ad5e49fa3eb177f24b1870d 0.000000000000000000 0.000000000000000000 TestRaw RESULT: -- ------------------------------------------ --------------------------- ------------------------------ --------------------------- RESULT: 0.000000000000000000 Total Token Balances RESULT: -- ------------------------------------------ --------------------------- ------------------------------ --------------------------- @@ -149,7 +149,7 @@ undefined RESULT: PASS Deploy Test 1 > -RESULT: testRawTx status=0x1 Success gas=6000000 gasUsed=1504167 costETH=0.003008334 costUSD=0.59916988278 @ ETH/USD=199.17 gasPrice=2 gwei block=1894 txIx=0 txId=0x70122edd1f36d1882c6dd4af589b2e9c62714ec829e33e8a81f1e29bbe33eb4f @ 1551011492 Sun, 24 Feb 2019 12:31:32 UTC +RESULT: testRawTx status=0x1 Success gas=6000000 gasUsed=1415073 costETH=0.002830146 costUSD=0.56368017882 @ ETH/USD=199.17 gasPrice=2 gwei block=2541 txIx=0 txId=0xf4518da4d51a4778596ea40d48b09bb796ea2459700593721f7494bb652510b5 @ 1551012139 Sun, 24 Feb 2019 12:42:19 UTC undefined > RESULT: -------------------------------------------------------------------------------- @@ -375,7 +375,7 @@ undefined ...... ... ... -RESULT: setup_1Tx[0] status=0x1 Success gas=1000000 gasUsed=68318 costETH=0.000136636 costUSD=0.02721379212 @ ETH/USD=199.17 gasPrice=2 gwei block=1896 txIx=0 txId=0xb8310ad7501467dcfc8c6dc4c7163acfb6ca4f325db80edee4584af41ca36387 @ 1551011494 Sun, 24 Feb 2019 12:31:34 UTC +RESULT: setup_1Tx[0] status=0x1 Success gas=1000000 gasUsed=68318 costETH=0.000136636 costUSD=0.02721379212 @ ETH/USD=199.17 gasPrice=2 gwei block=2543 txIx=0 txId=0xbef7d61bafa3f79078d4145db638d0e0dff24e1299d73685e8236256fe1ee84d @ 1551012141 Sun, 24 Feb 2019 12:42:21 UTC 68318 > undefined @@ -530,7 +530,7 @@ RESULT: PASS Insert Data #2 - testRaw.insert(28) ...... ... ... -RESULT: setup_1Tx[1] status=0x1 Success gas=1000000 gasUsed=99331 costETH=0.000198662 costUSD=0.03956751054 @ ETH/USD=199.17 gasPrice=2 gwei block=1898 txIx=0 txId=0x2fe9080b07415173ef8eedfe67f5ba310c59287f1426a7bef190d97154af903e @ 1551011496 Sun, 24 Feb 2019 12:31:36 UTC +RESULT: setup_1Tx[1] status=0x1 Success gas=1000000 gasUsed=99331 costETH=0.000198662 costUSD=0.03956751054 @ ETH/USD=199.17 gasPrice=2 gwei block=2546 txIx=0 txId=0x2b22c23cd0c7d619dbd31107a10cb15c074f0e458529b90313c437ffa40b51de @ 1551012144 Sun, 24 Feb 2019 12:42:24 UTC 167649 > undefined @@ -695,7 +695,7 @@ RESULT: PASS Insert Data #3 - testRaw.insert(17) ...... ... ... -RESULT: setup_1Tx[2] status=0x1 Success gas=1000000 gasUsed=99331 costETH=0.000198662 costUSD=0.03956751054 @ ETH/USD=199.17 gasPrice=2 gwei block=1901 txIx=0 txId=0x7725f8e893c8e2e58362af2217b42c7f6cdc52226499119c46af507a87725727 @ 1551011499 Sun, 24 Feb 2019 12:31:39 UTC +RESULT: setup_1Tx[2] status=0x1 Success gas=1000000 gasUsed=99331 costETH=0.000198662 costUSD=0.03956751054 @ ETH/USD=199.17 gasPrice=2 gwei block=2549 txIx=0 txId=0x3dee508c7c9f5479ec14b071f088aaee6327e590f697edc7c2ddf07c12387189 @ 1551012147 Sun, 24 Feb 2019 12:42:27 UTC 266980 > undefined @@ -926,35 +926,35 @@ RESULT: PASS Insert Data #4 - testRaw.insert(27) ...... ... ... -RESULT: setup_1Tx[3] status=0x1 Success gas=1000000 gasUsed=87920 costETH=0.00017584 costUSD=0.0350220528 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=0 txId=0x1119c98b464cb4042200f64807ba9d8ab0d65458bb4a5706b91366fd299d11b0 @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -RESULT: setup_1Tx[4] status=0x1 Success gas=1000000 gasUsed=99691 costETH=0.000199382 costUSD=0.03971091294 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=1 txId=0x00212fe1798c65fc46c6ee5287a99b2c967bda6e2dc82c0486d61efeec0fa0e6 @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -RESULT: setup_1Tx[5] status=0x1 Success gas=1000000 gasUsed=140576 costETH=0.000281152 costUSD=0.05599704384 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=2 txId=0xe7a2764622b7b1130952352a83de44b42cc2a48cefe559afef4e7e4705e1d51c @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -RESULT: setup_1Tx[6] status=0x1 Success gas=1000000 gasUsed=99704 costETH=0.000199408 costUSD=0.03971609136 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=3 txId=0x9aae48aa85845cc594f1736cf3d4fb095286d2c622d4a00add33c5a718985a30 @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -RESULT: setup_1Tx[7] status=0x1 Success gas=1000000 gasUsed=103823 costETH=0.000207646 costUSD=0.04135685382 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=4 txId=0x6e83c8edc694f1ce67c8e29a7475be8fba1dd3862f15cc211d1276bd49dd602b @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -RESULT: setup_1Tx[8] status=0x1 Success gas=1000000 gasUsed=140956 costETH=0.000281912 costUSD=0.05614841304 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=5 txId=0x1329b9c4993a3cafb7547b76ca535e195a34e4b06ef1a38212026be4c0d2982c @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -RESULT: setup_1Tx[9] status=0x1 Success gas=1000000 gasUsed=100051 costETH=0.000200102 costUSD=0.03985431534 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=6 txId=0xc189ae95bdf611b2ae1c66654e79389cb3a775fef31b1fa35e97148d7ca2acef @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -RESULT: setup_1Tx[10] status=0x1 Success gas=1000000 gasUsed=103828 costETH=0.000207656 costUSD=0.04135884552 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=7 txId=0x4765cf43197999652512803d12628c6cbc3586391712ab52151db139bbb48224 @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -RESULT: setup_1Tx[11] status=0x1 Success gas=1000000 gasUsed=92417 costETH=0.000184834 costUSD=0.03681338778 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=0 txId=0xc5a958d708bc35e445c8bb4dfa8496e9f7da81f68c2cbd0d4598d8472a6d9956 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[12] status=0x1 Success gas=1000000 gasUsed=140985 costETH=0.00028197 costUSD=0.0561599649 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=1 txId=0xe02aefbb0cc2c1855b456ec254df28782e6a71a267f941501cdd61b8263699cf @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[13] status=0x1 Success gas=1000000 gasUsed=167451 costETH=0.000334902 costUSD=0.06670243134 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=2 txId=0x9e888a4f1bf1189e15cf180a9d7a88f46122291f4572b631e665a380816d4fbd @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[14] status=0x1 Success gas=1000000 gasUsed=100077 costETH=0.000200154 costUSD=0.03986467218 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=3 txId=0xc70ed4d832ee69c239a5beb9f22acfb3ca7d27b78539633cced25c98e4b38ff6 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[15] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=4 txId=0xf8d07e458d33581c91a729f156b6058cee58124c403f3e76fe9025935fbc6383 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[16] status=0x1 Success gas=1000000 gasUsed=104196 costETH=0.000208392 costUSD=0.04150543464 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=5 txId=0x206d1b3978b1690d23e5af0aff9566b220cf88e0dc847af9c1f91a288c239254 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[17] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=6 txId=0x377cb84f5caa41b8f7c12e60ceb62df1b3d91d17c8052ea4003caa31f6f462ba @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[18] status=0x1 Success gas=1000000 gasUsed=104175 costETH=0.00020835 costUSD=0.0414970695 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=7 txId=0xf2a3521b856b58c4ec8f2c360ebe23ce5121c5e35d87e3485df22ed37569847c @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[19] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=8 txId=0x2cf13916cafa0e7ea34c518e29a32adc656ddc4c04c2b71760c8b9cf9c7c8048 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[20] status=0x1 Success gas=1000000 gasUsed=108315 costETH=0.00021663 costUSD=0.0431461971 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=9 txId=0xf83f76586c0d127fec857047285c6ab1e9902aeb87cf106ea20eb7c2a82e6288 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[21] status=0x1 Success gas=1000000 gasUsed=141296 costETH=0.000282592 costUSD=0.05628384864 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=10 txId=0xa8f21e1a9bf0510c5e35bf2efaba96f845c6270f7ae2d5e10c3d09c4be6e4277 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[22] status=0x1 Success gas=1000000 gasUsed=167484 costETH=0.000334968 costUSD=0.06671557656 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=11 txId=0x4610aeba1285c2cf35001869f62f489e47c1fd850140fd44d7e69537b95a3d84 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[23] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=12 txId=0x2b87248afe7acb743e0b0120987f939cbe0ba9d707f33a1767c5effa0eebf6a6 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[24] status=0x1 Success gas=1000000 gasUsed=104201 costETH=0.000208402 costUSD=0.04150742634 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=13 txId=0xde566b55a29602a8cdde5338c87eadd7e940c8f03e0c95a6ea122a335371f8da @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[25] status=0x1 Success gas=1000000 gasUsed=100784 costETH=0.000201568 costUSD=0.04014629856 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=14 txId=0x36a8a7dabeaaf917ed401aa06977362922cedbd17e2de364361261ba126095f5 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[26] status=0x1 Success gas=1000000 gasUsed=100797 costETH=0.000201594 costUSD=0.04015147698 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=15 txId=0x31fba18147d060e911f4bfa9353d5f5cf80b78e02eb420616ca2abd26c919b98 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[27] status=0x1 Success gas=1000000 gasUsed=141329 costETH=0.000282658 costUSD=0.05629699386 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=16 txId=0x52fc22c6795a21cde70a8867ab9b609241cf73d405f058d05e56f99496aef051 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[28] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=17 txId=0xb4ff8f89b26a601f39095e0978b5ad7bddce6e5db4936c69153f674c2b883ee1 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[29] status=0x1 Success gas=1000000 gasUsed=108312 costETH=0.000216624 costUSD=0.04314500208 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=18 txId=0x7f6d04f54d289c0dba822b29233812d57e32d26f0e8cc30732e07cfe831df6bf @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[30] status=0x1 Success gas=1000000 gasUsed=167842 costETH=0.000335684 costUSD=0.06685818228 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=19 txId=0x6b6921d004533b46d860ef659905734fe7236109420ccb325eabf1a536e579e1 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -RESULT: setup_1Tx[31] status=0x1 Success gas=1000000 gasUsed=104569 costETH=0.000209138 costUSD=0.04165401546 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=20 txId=0xd618771cdf46cab7fb370f8401914687ce92d0fc89b3426a3e17d6f50fe244c9 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC +RESULT: setup_1Tx[3] status=0x1 Success gas=1000000 gasUsed=87920 costETH=0.00017584 costUSD=0.0350220528 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=0 txId=0xce19b00426dbfd51308055ef77f3cf47b7695d4776b6261f1bd9e28887525893 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[4] status=0x1 Success gas=1000000 gasUsed=99691 costETH=0.000199382 costUSD=0.03971091294 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=1 txId=0x502b34f78f3af5ce016fb303d6c2c38baa5229601481fff92aed7180279e0dec @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[5] status=0x1 Success gas=1000000 gasUsed=140576 costETH=0.000281152 costUSD=0.05599704384 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=2 txId=0x1384f85cc7e28062b0c261ac843961e62398cebd398e78bd8e077d78357bcd51 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[6] status=0x1 Success gas=1000000 gasUsed=99704 costETH=0.000199408 costUSD=0.03971609136 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=3 txId=0x24a8beb2e9bf357f6518080f7204b93718951ca5c8c8add14a073122ec0bda28 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[7] status=0x1 Success gas=1000000 gasUsed=103823 costETH=0.000207646 costUSD=0.04135685382 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=4 txId=0x68d49913eeba6176a5fb6374c6046cf5522d8f972e603e250696db1a3d58030a @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[8] status=0x1 Success gas=1000000 gasUsed=140956 costETH=0.000281912 costUSD=0.05614841304 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=5 txId=0xb7a183f5fd43740dee708f6345f4ff7c714b8af6e0965bb5788bb8bbddc21aae @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[9] status=0x1 Success gas=1000000 gasUsed=100051 costETH=0.000200102 costUSD=0.03985431534 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=6 txId=0xa2abee8bec422441eb8287472bf55ebf93fdfa9eb6e4003550a68d1fee154f41 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[10] status=0x1 Success gas=1000000 gasUsed=103828 costETH=0.000207656 costUSD=0.04135884552 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=7 txId=0x0728c5eca1bf1f98177f8b845194d67ff64f6a3fc596518b475c3fe2c93e98d8 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[11] status=0x1 Success gas=1000000 gasUsed=92417 costETH=0.000184834 costUSD=0.03681338778 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=8 txId=0x3053fee6e59d277d84e67798830c9144f298af7ec70c5ce9b0d06ffd1101740f @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[12] status=0x1 Success gas=1000000 gasUsed=140985 costETH=0.00028197 costUSD=0.0561599649 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=9 txId=0xc9b8eadaf9a6109efaa73261694929a32fb9dd60d361555a63dde1d2b45dea6f @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[13] status=0x1 Success gas=1000000 gasUsed=167451 costETH=0.000334902 costUSD=0.06670243134 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=10 txId=0x5c50830595a084a8b8c8e36838702782d0c39c972f2affc2ac25da15194fd145 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[14] status=0x1 Success gas=1000000 gasUsed=100077 costETH=0.000200154 costUSD=0.03986467218 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=11 txId=0xf3fc5f11e17757dfe877218af42eddf97197646e173bd020ef282c63d6355ad7 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[15] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=12 txId=0x50b126131dc52fff2c49b703511bd00251b7682bc70c514047d805e8d5c76575 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +RESULT: setup_1Tx[16] status=0x1 Success gas=1000000 gasUsed=104196 costETH=0.000208392 costUSD=0.04150543464 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=0 txId=0xd1c8da1f7d8f090de000372bc51ac28c1a182f815383aabec82999e901280b5d @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[17] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=1 txId=0xf6350860eb90397bfa27fca0197f7f1c766ce656c205d92bd68e533d67576fff @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[18] status=0x1 Success gas=1000000 gasUsed=104175 costETH=0.00020835 costUSD=0.0414970695 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=2 txId=0x1ea1f5fcda462e3936ac759df12f830493bd7759a439fd514006ed2dfe923f3f @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[19] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=3 txId=0x5dde619dc04619984f77a9dba7180c018db47e3700c74867550309a9fdb3df52 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[20] status=0x1 Success gas=1000000 gasUsed=108315 costETH=0.00021663 costUSD=0.0431461971 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=4 txId=0x3b05f782b696b9969a3f532f873c3cd540564333eda7382b80471613a86ec6a7 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[21] status=0x1 Success gas=1000000 gasUsed=141296 costETH=0.000282592 costUSD=0.05628384864 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=5 txId=0x7deb7ab30551d4542e9d50ea38d7bdd025551c401fabc1c590d54e2e58cf2856 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[22] status=0x1 Success gas=1000000 gasUsed=167484 costETH=0.000334968 costUSD=0.06671557656 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=6 txId=0x80aabf334972576e5c523dc3ec7d5f061ea7367bf5361278af242d364bbdb604 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[23] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=7 txId=0x0eb6014af41fae0f28261ca90d57c1922e4fb55faf26a71f8d0b8788f9a11229 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[24] status=0x1 Success gas=1000000 gasUsed=104201 costETH=0.000208402 costUSD=0.04150742634 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=8 txId=0x6d8fd3272f6be5b3351e1b898436f73c3e4d01c7e37cf8c2dc1de50add1a588b @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[25] status=0x1 Success gas=1000000 gasUsed=100784 costETH=0.000201568 costUSD=0.04014629856 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=9 txId=0x45b1ae97a3223a3bc4aca81b81e129a0a158e8ebc29e1897a0ce55398349ccb9 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[26] status=0x1 Success gas=1000000 gasUsed=100797 costETH=0.000201594 costUSD=0.04015147698 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=10 txId=0x7e4ab35d825283ebbe331eff62c5574068dc4371a2e8ad06919e90b4207f8401 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[27] status=0x1 Success gas=1000000 gasUsed=141329 costETH=0.000282658 costUSD=0.05629699386 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=11 txId=0x35efe62545c2c9e268f2a286f6f3bc7e195c4df0d254ceada82fecd7f428201a @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[28] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=12 txId=0x4187adbee65f9161b326e6142767948e25f014860f46aa865da8993f697e55e5 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[29] status=0x1 Success gas=1000000 gasUsed=108312 costETH=0.000216624 costUSD=0.04314500208 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=13 txId=0xbc1b73a0c569ddf5e701acdc02fffbdb76616f7af02813baed5745f224588f15 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[30] status=0x1 Success gas=1000000 gasUsed=167842 costETH=0.000335684 costUSD=0.06685818228 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=14 txId=0xd6984567a85a7c3f2813df53fca82200c0c9bdb4a45030a880f6cf150a343762 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +RESULT: setup_1Tx[31] status=0x1 Success gas=1000000 gasUsed=104569 costETH=0.000209138 costUSD=0.04165401546 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=15 txId=0x02ab7d42486a42e8e5b8aee76739f06627c439e91caa8bc4859e294e49893764 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC 3599879 > undefined @@ -1169,7 +1169,7 @@ undefined RESULT: PASS Insert Data #5 - Cannot Insert Duplicate - testRaw.insert(14) 1 > -RESULT: insertData5_tx status=0x0 Failure gas=1000000 gasUsed=22790 costETH=0.00004558 costUSD=0.0090781686 @ ETH/USD=199.17 gasPrice=2 gwei block=1912 txIx=0 txId=0x23ee3ad72915def04e7ea14cab041e5b3c4c88408995fabd0bef008a95353e91 @ 1551011510 Sun, 24 Feb 2019 12:31:50 UTC +RESULT: insertData5_tx status=0x0 Failure gas=1000000 gasUsed=22790 costETH=0.00004558 costUSD=0.0090781686 @ ETH/USD=199.17 gasPrice=2 gwei block=2560 txIx=0 txId=0x5c297f2eab5cc2e5a0c85135958d9a4419faa8a08f9261d3df9979a3aa3a1868 @ 1551012158 Sun, 24 Feb 2019 12:42:38 UTC undefined > RESULT: @@ -1237,7 +1237,7 @@ undefined RESULT: PASS Remove Data #1 - Cannot Remove Non-Existent Key - testRaw.remove(114) 1 > -RESULT: removeData1_tx status=0x0 Failure gas=1000000 gasUsed=22542 costETH=0.000045084 costUSD=0.00897938028 @ ETH/USD=199.17 gasPrice=2 gwei block=1915 txIx=0 txId=0xa97cb3d28c051f1f1cffed5582d6b74b1d9e46491b65425ed17fbbaed297f4ed @ 1551011513 Sun, 24 Feb 2019 12:31:53 UTC +RESULT: removeData1_tx status=0x0 Failure gas=1000000 gasUsed=22542 costETH=0.000045084 costUSD=0.00897938028 @ ETH/USD=199.17 gasPrice=2 gwei block=2563 txIx=0 txId=0xd6fb03f4ad99d822de17724e8766127bd469ada3ae3876c7fabb11a8c866fdf2 @ 1551012161 Sun, 24 Feb 2019 12:42:41 UTC undefined > RESULT: @@ -1472,38 +1472,38 @@ undefined ...... ... ... -RESULT: tx[0] status=0x1 Success gas=1000000 gasUsed=56969 costETH=0.000113938 costUSD=0.02269303146 @ ETH/USD=199.17 gasPrice=2 gwei block=1918 txIx=0 txId=0xe08724bab1cc09e3796c27a19e53e82f5a8b26a36b673b71f16afcfcc72ee58b @ 1551011516 Sun, 24 Feb 2019 12:31:56 UTC -RESULT: tx[1] status=0x1 Success gas=1000000 gasUsed=79499 costETH=0.000158998 costUSD=0.03166763166 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=0 txId=0x84d8a42645b8821c5db8687eac827732ae172a056451c88183441861c5d88813 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -RESULT: tx[2] status=0x1 Success gas=1000000 gasUsed=64463 costETH=0.000128926 costUSD=0.02567819142 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=1 txId=0x50e0b799d01b71db2863432e17217b78403c46ea9fb4256a546f9494ca2d9c89 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -RESULT: tx[3] status=0x1 Success gas=1000000 gasUsed=119594 costETH=0.000239188 costUSD=0.04763907396 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=2 txId=0x0ddb8afe8e999629984d4894c4af49a6c22669339e7467624525ecd9b04cc0d4 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -RESULT: tx[4] status=0x1 Success gas=1000000 gasUsed=71701 costETH=0.000143402 costUSD=0.02856137634 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=3 txId=0x1a7910545c1eb5186f644641728bc99f6b747a50d40fe65e0a745ce5c32f6379 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -RESULT: tx[5] status=0x1 Success gas=1000000 gasUsed=148078 costETH=0.000296156 costUSD=0.05898539052 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=4 txId=0x0d8547f079cafddc8254023093abd26ff4e50ffb29444df8210e786da9a42410 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -RESULT: tx[6] status=0x1 Success gas=1000000 gasUsed=30542 costETH=0.000061084 costUSD=0.01216610028 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=5 txId=0x6de8cdfdbeef17ef96d291f102ed63aef5b6a940d5ca78c02a9f5c56221dc614 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -RESULT: tx[7] status=0x1 Success gas=1000000 gasUsed=30691 costETH=0.000061382 costUSD=0.01222545294 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=6 txId=0xddc8e5f77ee6a2bbe2a8c6a26e9d9f2e5d249d7f7cf289a9d174e6682645baff @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -RESULT: tx[8] status=0x1 Success gas=1000000 gasUsed=82535 costETH=0.00016507 costUSD=0.0328769919 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=0 txId=0xf28b97eadf872939e4567a45b60d0eb51fc5e7b81aefd80d253a7edc597a79b1 @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -RESULT: tx[9] status=0x1 Success gas=1000000 gasUsed=97447 costETH=0.000194894 costUSD=0.03881703798 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=1 txId=0x9bb2832863f0bf08d4bd6984edbeedd1cf5b70b6d25ea4d1cbc8c6bb12cdac84 @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -RESULT: tx[10] status=0x1 Success gas=1000000 gasUsed=57118 costETH=0.000114236 costUSD=0.02275238412 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=2 txId=0x7d05b6c854044ff32b3434290f33696f7e31cb82d2fc65ee3a2be4112454906e @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -RESULT: tx[11] status=0x1 Success gas=1000000 gasUsed=82768 costETH=0.000165536 costUSD=0.03296980512 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=3 txId=0xa2eae7e1dc9c2dad1dbd82357d3a4f1aa1ecacde35ecf6c11a94b7982d3110ce @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -RESULT: tx[12] status=0x1 Success gas=1000000 gasUsed=120384 costETH=0.000240768 costUSD=0.04795376256 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=4 txId=0x5157b5db8a62bd89151af626f4c34adb7b1164c5e53e9dd837bf263dede7894c @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -RESULT: tx[13] status=0x1 Success gas=1000000 gasUsed=98048 costETH=0.000196096 costUSD=0.03905644032 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=5 txId=0x6aa8491f641bbc79d48ea9ca0fd3a460bcdab8a5f77652777e9ef8bd107b1139 @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -RESULT: tx[14] status=0x1 Success gas=1000000 gasUsed=71694 costETH=0.000143388 costUSD=0.02855858796 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=6 txId=0x527be763290e0c4ef05a31bc65a7f4b256a3dd93a3ab5212fd38deab4779ef6f @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -RESULT: tx[15] status=0x1 Success gas=1000000 gasUsed=162848 costETH=0.000325696 costUSD=0.06486887232 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=7 txId=0x332448206a8079531457a4d30c8243625a0e821ec4b20bad91f86592fb958287 @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -RESULT: tx[16] status=0x1 Success gas=1000000 gasUsed=79350 costETH=0.0001587 costUSD=0.031608279 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=0 txId=0xa50f038d850972610a3f9f11d73f882f0271ecda539bfc06f08addcee7c08fba @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -RESULT: tx[17] status=0x1 Success gas=1000000 gasUsed=30542 costETH=0.000061084 costUSD=0.01216610028 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=1 txId=0xf66ded03074172be0a3de0704988a8c14c7498d014d0871d58363cce216cb3d7 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -RESULT: tx[18] status=0x1 Success gas=1000000 gasUsed=64774 costETH=0.000129548 costUSD=0.02580207516 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=2 txId=0x47394a2e4262f84f0393384b98ef7ce7efd02cdc609301addf69869ee5797cb2 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -RESULT: tx[19] status=0x1 Success gas=1000000 gasUsed=97434 costETH=0.000194868 costUSD=0.03881185956 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=3 txId=0x223f6ab75997a2b0dc05c95d3d5b39170b9293991056a96114684871b6faf90d @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -RESULT: tx[20] status=0x1 Success gas=1000000 gasUsed=124842 costETH=0.000249684 costUSD=0.04972956228 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=4 txId=0x09e844a3eeba65027d81ef31d06920b10d7c63083d0581003aee711a8faf9034 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -RESULT: tx[21] status=0x1 Success gas=1000000 gasUsed=45280 costETH=0.00009056 costUSD=0.0180368352 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=5 txId=0x5eed0cee35e36ec1c06a013e6ac919de79ba0b6e5164a9c138f7517c8a307fb2 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -RESULT: tx[22] status=0x1 Success gas=1000000 gasUsed=190402 costETH=0.000380804 costUSD=0.07584473268 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=6 txId=0x541164156f3f726fd02338d2fcb7c64b2a975cdda882a415af61bb7f7e01eff6 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -RESULT: tx[23] status=0x1 Success gas=1000000 gasUsed=30698 costETH=0.000061396 costUSD=0.01222824132 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=7 txId=0x76ffcccbd0d08008c5127d1a71d53b898f98cfbb8bc32e435cecb79c44b3b98c @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -RESULT: tx[24] status=0x1 Success gas=1000000 gasUsed=119605 costETH=0.00023921 costUSD=0.0476434557 @ ETH/USD=199.17 gasPrice=2 gwei block=1929 txIx=0 txId=0x68cb1b7bc16cbc42d4e272ba7879172b9439f29dd00c48e6aa65183167c2c4ee @ 1551011527 Sun, 24 Feb 2019 12:32:07 UTC -RESULT: tx[25] status=0x1 Success gas=1000000 gasUsed=97494 costETH=0.000194988 costUSD=0.03883575996 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=0 txId=0xac3a82f47a2644d16e88b9a1dad9475a30110997e231075e50d4dc575463f556 @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -RESULT: tx[26] status=0x1 Success gas=1000000 gasUsed=59796 costETH=0.000119592 costUSD=0.02381913864 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=1 txId=0x4c43f0af041147d96b5b097995a017529f3a449ccefe3ad4f98b1f3bc5c35b86 @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -RESULT: tx[27] status=0x1 Success gas=1000000 gasUsed=45280 costETH=0.00009056 costUSD=0.0180368352 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=2 txId=0xcbbb69ddea4194374c1992af264d780b9d121c262b587025e4947796573901a4 @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -RESULT: tx[28] status=0x1 Success gas=1000000 gasUsed=45273 costETH=0.000090546 costUSD=0.01803404682 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=3 txId=0x3655b642c7747a9f952b23bdc281a4a9c8092e6634bf2f71c10ee4fca3cd826d @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -RESULT: tx[29] status=0x1 Success gas=1000000 gasUsed=74318 costETH=0.000148636 costUSD=0.02960383212 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=4 txId=0x40474197162c4218e54a543a3d4a169648549e73933bdc9b0f973ded2a80af27 @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -RESULT: tx[30] status=0x1 Success gas=1000000 gasUsed=45273 costETH=0.000090546 costUSD=0.01803404682 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=5 txId=0xad0e99b78af88a72e037b5548c7e07cf751239294a1f168e87e932b65e67578e @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -RESULT: tx[31] status=0x1 Success gas=1000000 gasUsed=44876 costETH=0.000089752 costUSD=0.01787590584 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=6 txId=0xbac9163d6f6d9f74fdef77d4de58b9fca43df4e31cc84523a1cee4aa7dcd370a @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC +RESULT: tx[0] status=0x1 Success gas=1000000 gasUsed=56969 costETH=0.000113938 costUSD=0.02269303146 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=0 txId=0x518834dc4cb239d83332850698fa81060cc31cc6edf245af9fb0d2c48cde1714 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +RESULT: tx[1] status=0x1 Success gas=1000000 gasUsed=79499 costETH=0.000158998 costUSD=0.03166763166 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=1 txId=0xd7557ae973d034cdacdc95f009fe86b976ceadb3b6e2842225b4ec4d7af9d84a @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +RESULT: tx[2] status=0x1 Success gas=1000000 gasUsed=64463 costETH=0.000128926 costUSD=0.02567819142 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=2 txId=0x76a986417ff715a99c8fa14f38ee7f38052f01bed9e33d4991617e6baefd2650 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +RESULT: tx[3] status=0x1 Success gas=1000000 gasUsed=119594 costETH=0.000239188 costUSD=0.04763907396 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=3 txId=0x2a3dbb788d7fbe64a77da513224598b1a22371532005b8786c660fe53051fae8 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +RESULT: tx[4] status=0x1 Success gas=1000000 gasUsed=71701 costETH=0.000143402 costUSD=0.02856137634 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=4 txId=0x8dcf73fc2dbf05d3b6168a9052115736fa680550653c29e486cde55696ee0263 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +RESULT: tx[5] status=0x1 Success gas=1000000 gasUsed=148078 costETH=0.000296156 costUSD=0.05898539052 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=5 txId=0xf0e9c405240f1128a4b758f51d2ab2b9f2bb242c91f070356dabe2188c1cbb09 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +RESULT: tx[6] status=0x1 Success gas=1000000 gasUsed=30542 costETH=0.000061084 costUSD=0.01216610028 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=6 txId=0x16c27a8469bbcd4e520a370b7e47ac388dbd03b247e971344ff97d4e30611c60 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +RESULT: tx[7] status=0x1 Success gas=1000000 gasUsed=30691 costETH=0.000061382 costUSD=0.01222545294 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=7 txId=0xbcac725b32c86fa154eb5f37116b585337c91b2013ce194aee83f43f57e2bd53 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +RESULT: tx[8] status=0x1 Success gas=1000000 gasUsed=82535 costETH=0.00016507 costUSD=0.0328769919 @ ETH/USD=199.17 gasPrice=2 gwei block=2569 txIx=0 txId=0x70224515d54a187ac8bb3d14259b130a35763f7388c91a6df91dd91f7cede5a4 @ 1551012167 Sun, 24 Feb 2019 12:42:47 UTC +RESULT: tx[9] status=0x1 Success gas=1000000 gasUsed=97447 costETH=0.000194894 costUSD=0.03881703798 @ ETH/USD=199.17 gasPrice=2 gwei block=2569 txIx=1 txId=0x1591209f3b92ed8d3e6e70a613e30ee50e1809219d1419856900c42459eeb23c @ 1551012167 Sun, 24 Feb 2019 12:42:47 UTC +RESULT: tx[10] status=0x1 Success gas=1000000 gasUsed=57118 costETH=0.000114236 costUSD=0.02275238412 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=0 txId=0xc1d29c9587723ffa83f341ef208356adeb2551d4848c5fb0f3e2e0e07af47461 @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +RESULT: tx[11] status=0x1 Success gas=1000000 gasUsed=82768 costETH=0.000165536 costUSD=0.03296980512 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=1 txId=0x5d802a83f78023d8580b9001bf9909c7ac2986824f0c241061ba2148128e80cf @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +RESULT: tx[12] status=0x1 Success gas=1000000 gasUsed=120384 costETH=0.000240768 costUSD=0.04795376256 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=2 txId=0x56fa46a17fc63890189526596c3848be24f7fba91a7d45fa3f95e4b1ed7917c7 @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +RESULT: tx[13] status=0x1 Success gas=1000000 gasUsed=98048 costETH=0.000196096 costUSD=0.03905644032 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=3 txId=0x7028576732272c0ccfe643002d2b4360b6e58fbb38ab346ae98d4547914caa26 @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +RESULT: tx[14] status=0x1 Success gas=1000000 gasUsed=71694 costETH=0.000143388 costUSD=0.02855858796 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=4 txId=0x726be6583e08586ae657f1e9c35acc167bd3e222e933e8cdf7718ca2d173605f @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +RESULT: tx[15] status=0x1 Success gas=1000000 gasUsed=162848 costETH=0.000325696 costUSD=0.06486887232 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=5 txId=0x672aa691bcf7e0af7b7d9aa486db6fac3f206f15297142ab1def70fd0dcb8342 @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +RESULT: tx[16] status=0x1 Success gas=1000000 gasUsed=79350 costETH=0.0001587 costUSD=0.031608279 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=0 txId=0x1f901c9238d81e25696e5b7b59b28508af1057e9994f6710b11ee0ae957ca659 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +RESULT: tx[17] status=0x1 Success gas=1000000 gasUsed=30542 costETH=0.000061084 costUSD=0.01216610028 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=1 txId=0x3f04851c8b2b5ccd5e96be8049a234fa2e99f1398798befe98e113eb44177475 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +RESULT: tx[18] status=0x1 Success gas=1000000 gasUsed=64774 costETH=0.000129548 costUSD=0.02580207516 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=2 txId=0x7f394cc558623657ed5441c2cc5a11728ae0fbe51393dba1dab1f9e655c56ffc @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +RESULT: tx[19] status=0x1 Success gas=1000000 gasUsed=97434 costETH=0.000194868 costUSD=0.03881185956 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=3 txId=0x6fd6147f082c3ad5fa9b42ddb5079a5f2a61437fec8ec30d7006baebc47b0730 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +RESULT: tx[20] status=0x1 Success gas=1000000 gasUsed=124842 costETH=0.000249684 costUSD=0.04972956228 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=4 txId=0x01d5e85a6f38754ac77cf01bc023705e34d6e91ff4913202fafa25db142b2109 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +RESULT: tx[21] status=0x1 Success gas=1000000 gasUsed=45280 costETH=0.00009056 costUSD=0.0180368352 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=5 txId=0xcb54c200bf472b937ada5a014a5c98807332f52609c04cd7e0244c49e7259735 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +RESULT: tx[22] status=0x1 Success gas=1000000 gasUsed=190402 costETH=0.000380804 costUSD=0.07584473268 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=6 txId=0x6546694179657cc3c1bca94cc64323fd288bafe9293027ccaf3683ebb9b10b21 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +RESULT: tx[23] status=0x1 Success gas=1000000 gasUsed=30698 costETH=0.000061396 costUSD=0.01222824132 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=7 txId=0x567cec793b6ed1ce5e367ec6bc4c726cc4889635b4c202c290b50573268dcede @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +RESULT: tx[24] status=0x1 Success gas=1000000 gasUsed=119605 costETH=0.00023921 costUSD=0.0476434557 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=0 txId=0x5589899bb5944a83a4087d5789091c5410208a5a98a3c33c555cad4d6caaecff @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +RESULT: tx[25] status=0x1 Success gas=1000000 gasUsed=97494 costETH=0.000194988 costUSD=0.03883575996 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=1 txId=0x9e4c579c41bebd66f176ac4f7290723e8d8103564fc29675a2ba0b3221a228af @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +RESULT: tx[26] status=0x1 Success gas=1000000 gasUsed=59796 costETH=0.000119592 costUSD=0.02381913864 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=2 txId=0xafcc5c2e2a07e4b30e62063730682401ee207eab066bf11755a9ab0e44698503 @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +RESULT: tx[27] status=0x1 Success gas=1000000 gasUsed=45280 costETH=0.00009056 costUSD=0.0180368352 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=3 txId=0xd0f4daf1a6e32165e8b7ac663009e663a4f98abac7fc55c0c2d7494df8a8f1df @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +RESULT: tx[28] status=0x1 Success gas=1000000 gasUsed=45273 costETH=0.000090546 costUSD=0.01803404682 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=4 txId=0x2c854144ea6dc6e8cca017310da7ae1313f60c0efd99c42c2a25c347f5cc14dd @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +RESULT: tx[29] status=0x1 Success gas=1000000 gasUsed=74318 costETH=0.000148636 costUSD=0.02960383212 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=5 txId=0x85fd7bf16ab7678cdb433a3ed3ebf151f1b2f1ed5745d6051564546033b22a81 @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +RESULT: tx[30] status=0x1 Success gas=1000000 gasUsed=45273 costETH=0.000090546 costUSD=0.01803404682 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=6 txId=0xd0eca30c90a55492223dd8e16def075d832cd53c5730e099237175a57c180e3a @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +RESULT: tx[31] status=0x1 Success gas=1000000 gasUsed=44876 costETH=0.000089752 costUSD=0.01787590584 @ ETH/USD=199.17 gasPrice=2 gwei block=2576 txIx=0 txId=0xeba6c7c0d888d92a2263371d29689614a3e85aa18720c7767757e00567e55b8e @ 1551012174 Sun, 24 Feb 2019 12:42:54 UTC 2569616 > undefined diff --git a/test/test1results.txt b/test/test1results.txt index b8262da..8ecefb9 100644 --- a/test/test1results.txt +++ b/test/test1results.txt @@ -14,19 +14,19 @@ ----- Deploy Test ----- # Account EtherBalanceChange Token Name -- ------------------------------------------ --------------------------- ------------------------------ --------------------------- - 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.003008334000000000 0.000000000000000000 Miner - 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.003008334000000000 0.000000000000000000 Deployer + 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.002830146000000000 0.000000000000000000 Miner + 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.002830146000000000 0.000000000000000000 Deployer 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Wallet 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 User1 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 User2 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 User3 - 6 0x7b41d3c2494ed063d5555a1e3269cff3bc41f16a 0.000000000000000000 0.000000000000000000 TestRaw + 6 0x3708ad6abbe680fc9ad5e49fa3eb177f24b1870d 0.000000000000000000 0.000000000000000000 TestRaw -- ------------------------------------------ --------------------------- ------------------------------ --------------------------- 0.000000000000000000 Total Token Balances -- ------------------------------------------ --------------------------- ------------------------------ --------------------------- PASS Deploy Test -testRawTx status=0x1 Success gas=6000000 gasUsed=1504167 costETH=0.003008334 costUSD=0.59916988278 @ ETH/USD=199.17 gasPrice=2 gwei block=1894 txIx=0 txId=0x70122edd1f36d1882c6dd4af589b2e9c62714ec829e33e8a81f1e29bbe33eb4f @ 1551011492 Sun, 24 Feb 2019 12:31:32 UTC +testRawTx status=0x1 Success gas=6000000 gasUsed=1415073 costETH=0.002830146 costUSD=0.56368017882 @ ETH/USD=199.17 gasPrice=2 gwei block=2541 txIx=0 txId=0xf4518da4d51a4778596ea40d48b09bb796ea2459700593721f7494bb652510b5 @ 1551012139 Sun, 24 Feb 2019 12:42:19 UTC -------------------------------------------------------------------------------- testRedBlackTree.root=0 testRedBlackTree.first=0 @@ -64,7 +64,7 @@ testRedBlackTree.last=18 -------------------------------------------------------------------------------- PASS Insert Data #1 - testRaw.insert(18) -setup_1Tx[0] status=0x1 Success gas=1000000 gasUsed=68318 costETH=0.000136636 costUSD=0.02721379212 @ ETH/USD=199.17 gasPrice=2 gwei block=1896 txIx=0 txId=0xb8310ad7501467dcfc8c6dc4c7163acfb6ca4f325db80edee4584af41ca36387 @ 1551011494 Sun, 24 Feb 2019 12:31:34 UTC +setup_1Tx[0] status=0x1 Success gas=1000000 gasUsed=68318 costETH=0.000136636 costUSD=0.02721379212 @ ETH/USD=199.17 gasPrice=2 gwei block=2543 txIx=0 txId=0xbef7d61bafa3f79078d4145db638d0e0dff24e1299d73685e8236256fe1ee84d @ 1551012141 Sun, 24 Feb 2019 12:42:21 UTC -------------------------------------------------------------------------------- testRedBlackTree.root=18 @@ -102,7 +102,7 @@ testRedBlackTree.last=28 -------------------------------------------------------------------------------- PASS Insert Data #2 - testRaw.insert(28) -setup_1Tx[1] status=0x1 Success gas=1000000 gasUsed=99331 costETH=0.000198662 costUSD=0.03956751054 @ ETH/USD=199.17 gasPrice=2 gwei block=1898 txIx=0 txId=0x2fe9080b07415173ef8eedfe67f5ba310c59287f1426a7bef190d97154af903e @ 1551011496 Sun, 24 Feb 2019 12:31:36 UTC +setup_1Tx[1] status=0x1 Success gas=1000000 gasUsed=99331 costETH=0.000198662 costUSD=0.03956751054 @ ETH/USD=199.17 gasPrice=2 gwei block=2546 txIx=0 txId=0x2b22c23cd0c7d619dbd31107a10cb15c074f0e458529b90313c437ffa40b51de @ 1551012144 Sun, 24 Feb 2019 12:42:24 UTC -------------------------------------------------------------------------------- testRedBlackTree.root=18 @@ -144,7 +144,7 @@ testRedBlackTree.last=28 -------------------------------------------------------------------------------- PASS Insert Data #3 - testRaw.insert(17) -setup_1Tx[2] status=0x1 Success gas=1000000 gasUsed=99331 costETH=0.000198662 costUSD=0.03956751054 @ ETH/USD=199.17 gasPrice=2 gwei block=1901 txIx=0 txId=0x7725f8e893c8e2e58362af2217b42c7f6cdc52226499119c46af507a87725727 @ 1551011499 Sun, 24 Feb 2019 12:31:39 UTC +setup_1Tx[2] status=0x1 Success gas=1000000 gasUsed=99331 costETH=0.000198662 costUSD=0.03956751054 @ ETH/USD=199.17 gasPrice=2 gwei block=2549 txIx=0 txId=0x3dee508c7c9f5479ec14b071f088aaee6327e590f697edc7c2ddf07c12387189 @ 1551012147 Sun, 24 Feb 2019 12:42:27 UTC -------------------------------------------------------------------------------- testRedBlackTree.root=18 @@ -246,35 +246,35 @@ PASS Insert Data #4 - testRaw.insert(6) PASS Insert Data #4 - testRaw.insert(20) PASS Insert Data #4 - testRaw.insert(25) PASS Insert Data #4 - testRaw.insert(27) -setup_1Tx[3] status=0x1 Success gas=1000000 gasUsed=87920 costETH=0.00017584 costUSD=0.0350220528 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=0 txId=0x1119c98b464cb4042200f64807ba9d8ab0d65458bb4a5706b91366fd299d11b0 @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -setup_1Tx[4] status=0x1 Success gas=1000000 gasUsed=99691 costETH=0.000199382 costUSD=0.03971091294 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=1 txId=0x00212fe1798c65fc46c6ee5287a99b2c967bda6e2dc82c0486d61efeec0fa0e6 @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -setup_1Tx[5] status=0x1 Success gas=1000000 gasUsed=140576 costETH=0.000281152 costUSD=0.05599704384 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=2 txId=0xe7a2764622b7b1130952352a83de44b42cc2a48cefe559afef4e7e4705e1d51c @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -setup_1Tx[6] status=0x1 Success gas=1000000 gasUsed=99704 costETH=0.000199408 costUSD=0.03971609136 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=3 txId=0x9aae48aa85845cc594f1736cf3d4fb095286d2c622d4a00add33c5a718985a30 @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -setup_1Tx[7] status=0x1 Success gas=1000000 gasUsed=103823 costETH=0.000207646 costUSD=0.04135685382 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=4 txId=0x6e83c8edc694f1ce67c8e29a7475be8fba1dd3862f15cc211d1276bd49dd602b @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -setup_1Tx[8] status=0x1 Success gas=1000000 gasUsed=140956 costETH=0.000281912 costUSD=0.05614841304 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=5 txId=0x1329b9c4993a3cafb7547b76ca535e195a34e4b06ef1a38212026be4c0d2982c @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -setup_1Tx[9] status=0x1 Success gas=1000000 gasUsed=100051 costETH=0.000200102 costUSD=0.03985431534 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=6 txId=0xc189ae95bdf611b2ae1c66654e79389cb3a775fef31b1fa35e97148d7ca2acef @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -setup_1Tx[10] status=0x1 Success gas=1000000 gasUsed=103828 costETH=0.000207656 costUSD=0.04135884552 @ ETH/USD=199.17 gasPrice=2 gwei block=1904 txIx=7 txId=0x4765cf43197999652512803d12628c6cbc3586391712ab52151db139bbb48224 @ 1551011502 Sun, 24 Feb 2019 12:31:42 UTC -setup_1Tx[11] status=0x1 Success gas=1000000 gasUsed=92417 costETH=0.000184834 costUSD=0.03681338778 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=0 txId=0xc5a958d708bc35e445c8bb4dfa8496e9f7da81f68c2cbd0d4598d8472a6d9956 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[12] status=0x1 Success gas=1000000 gasUsed=140985 costETH=0.00028197 costUSD=0.0561599649 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=1 txId=0xe02aefbb0cc2c1855b456ec254df28782e6a71a267f941501cdd61b8263699cf @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[13] status=0x1 Success gas=1000000 gasUsed=167451 costETH=0.000334902 costUSD=0.06670243134 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=2 txId=0x9e888a4f1bf1189e15cf180a9d7a88f46122291f4572b631e665a380816d4fbd @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[14] status=0x1 Success gas=1000000 gasUsed=100077 costETH=0.000200154 costUSD=0.03986467218 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=3 txId=0xc70ed4d832ee69c239a5beb9f22acfb3ca7d27b78539633cced25c98e4b38ff6 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[15] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=4 txId=0xf8d07e458d33581c91a729f156b6058cee58124c403f3e76fe9025935fbc6383 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[16] status=0x1 Success gas=1000000 gasUsed=104196 costETH=0.000208392 costUSD=0.04150543464 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=5 txId=0x206d1b3978b1690d23e5af0aff9566b220cf88e0dc847af9c1f91a288c239254 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[17] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=6 txId=0x377cb84f5caa41b8f7c12e60ceb62df1b3d91d17c8052ea4003caa31f6f462ba @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[18] status=0x1 Success gas=1000000 gasUsed=104175 costETH=0.00020835 costUSD=0.0414970695 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=7 txId=0xf2a3521b856b58c4ec8f2c360ebe23ce5121c5e35d87e3485df22ed37569847c @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[19] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=8 txId=0x2cf13916cafa0e7ea34c518e29a32adc656ddc4c04c2b71760c8b9cf9c7c8048 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[20] status=0x1 Success gas=1000000 gasUsed=108315 costETH=0.00021663 costUSD=0.0431461971 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=9 txId=0xf83f76586c0d127fec857047285c6ab1e9902aeb87cf106ea20eb7c2a82e6288 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[21] status=0x1 Success gas=1000000 gasUsed=141296 costETH=0.000282592 costUSD=0.05628384864 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=10 txId=0xa8f21e1a9bf0510c5e35bf2efaba96f845c6270f7ae2d5e10c3d09c4be6e4277 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[22] status=0x1 Success gas=1000000 gasUsed=167484 costETH=0.000334968 costUSD=0.06671557656 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=11 txId=0x4610aeba1285c2cf35001869f62f489e47c1fd850140fd44d7e69537b95a3d84 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[23] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=12 txId=0x2b87248afe7acb743e0b0120987f939cbe0ba9d707f33a1767c5effa0eebf6a6 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[24] status=0x1 Success gas=1000000 gasUsed=104201 costETH=0.000208402 costUSD=0.04150742634 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=13 txId=0xde566b55a29602a8cdde5338c87eadd7e940c8f03e0c95a6ea122a335371f8da @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[25] status=0x1 Success gas=1000000 gasUsed=100784 costETH=0.000201568 costUSD=0.04014629856 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=14 txId=0x36a8a7dabeaaf917ed401aa06977362922cedbd17e2de364361261ba126095f5 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[26] status=0x1 Success gas=1000000 gasUsed=100797 costETH=0.000201594 costUSD=0.04015147698 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=15 txId=0x31fba18147d060e911f4bfa9353d5f5cf80b78e02eb420616ca2abd26c919b98 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[27] status=0x1 Success gas=1000000 gasUsed=141329 costETH=0.000282658 costUSD=0.05629699386 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=16 txId=0x52fc22c6795a21cde70a8867ab9b609241cf73d405f058d05e56f99496aef051 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[28] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=17 txId=0xb4ff8f89b26a601f39095e0978b5ad7bddce6e5db4936c69153f674c2b883ee1 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[29] status=0x1 Success gas=1000000 gasUsed=108312 costETH=0.000216624 costUSD=0.04314500208 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=18 txId=0x7f6d04f54d289c0dba822b29233812d57e32d26f0e8cc30732e07cfe831df6bf @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[30] status=0x1 Success gas=1000000 gasUsed=167842 costETH=0.000335684 costUSD=0.06685818228 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=19 txId=0x6b6921d004533b46d860ef659905734fe7236109420ccb325eabf1a536e579e1 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC -setup_1Tx[31] status=0x1 Success gas=1000000 gasUsed=104569 costETH=0.000209138 costUSD=0.04165401546 @ ETH/USD=199.17 gasPrice=2 gwei block=1905 txIx=20 txId=0xd618771cdf46cab7fb370f8401914687ce92d0fc89b3426a3e17d6f50fe244c9 @ 1551011503 Sun, 24 Feb 2019 12:31:43 UTC +setup_1Tx[3] status=0x1 Success gas=1000000 gasUsed=87920 costETH=0.00017584 costUSD=0.0350220528 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=0 txId=0xce19b00426dbfd51308055ef77f3cf47b7695d4776b6261f1bd9e28887525893 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[4] status=0x1 Success gas=1000000 gasUsed=99691 costETH=0.000199382 costUSD=0.03971091294 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=1 txId=0x502b34f78f3af5ce016fb303d6c2c38baa5229601481fff92aed7180279e0dec @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[5] status=0x1 Success gas=1000000 gasUsed=140576 costETH=0.000281152 costUSD=0.05599704384 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=2 txId=0x1384f85cc7e28062b0c261ac843961e62398cebd398e78bd8e077d78357bcd51 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[6] status=0x1 Success gas=1000000 gasUsed=99704 costETH=0.000199408 costUSD=0.03971609136 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=3 txId=0x24a8beb2e9bf357f6518080f7204b93718951ca5c8c8add14a073122ec0bda28 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[7] status=0x1 Success gas=1000000 gasUsed=103823 costETH=0.000207646 costUSD=0.04135685382 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=4 txId=0x68d49913eeba6176a5fb6374c6046cf5522d8f972e603e250696db1a3d58030a @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[8] status=0x1 Success gas=1000000 gasUsed=140956 costETH=0.000281912 costUSD=0.05614841304 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=5 txId=0xb7a183f5fd43740dee708f6345f4ff7c714b8af6e0965bb5788bb8bbddc21aae @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[9] status=0x1 Success gas=1000000 gasUsed=100051 costETH=0.000200102 costUSD=0.03985431534 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=6 txId=0xa2abee8bec422441eb8287472bf55ebf93fdfa9eb6e4003550a68d1fee154f41 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[10] status=0x1 Success gas=1000000 gasUsed=103828 costETH=0.000207656 costUSD=0.04135884552 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=7 txId=0x0728c5eca1bf1f98177f8b845194d67ff64f6a3fc596518b475c3fe2c93e98d8 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[11] status=0x1 Success gas=1000000 gasUsed=92417 costETH=0.000184834 costUSD=0.03681338778 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=8 txId=0x3053fee6e59d277d84e67798830c9144f298af7ec70c5ce9b0d06ffd1101740f @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[12] status=0x1 Success gas=1000000 gasUsed=140985 costETH=0.00028197 costUSD=0.0561599649 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=9 txId=0xc9b8eadaf9a6109efaa73261694929a32fb9dd60d361555a63dde1d2b45dea6f @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[13] status=0x1 Success gas=1000000 gasUsed=167451 costETH=0.000334902 costUSD=0.06670243134 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=10 txId=0x5c50830595a084a8b8c8e36838702782d0c39c972f2affc2ac25da15194fd145 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[14] status=0x1 Success gas=1000000 gasUsed=100077 costETH=0.000200154 costUSD=0.03986467218 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=11 txId=0xf3fc5f11e17757dfe877218af42eddf97197646e173bd020ef282c63d6355ad7 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[15] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2552 txIx=12 txId=0x50b126131dc52fff2c49b703511bd00251b7682bc70c514047d805e8d5c76575 @ 1551012150 Sun, 24 Feb 2019 12:42:30 UTC +setup_1Tx[16] status=0x1 Success gas=1000000 gasUsed=104196 costETH=0.000208392 costUSD=0.04150543464 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=0 txId=0xd1c8da1f7d8f090de000372bc51ac28c1a182f815383aabec82999e901280b5d @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[17] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=1 txId=0xf6350860eb90397bfa27fca0197f7f1c766ce656c205d92bd68e533d67576fff @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[18] status=0x1 Success gas=1000000 gasUsed=104175 costETH=0.00020835 costUSD=0.0414970695 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=2 txId=0x1ea1f5fcda462e3936ac759df12f830493bd7759a439fd514006ed2dfe923f3f @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[19] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=3 txId=0x5dde619dc04619984f77a9dba7180c018db47e3700c74867550309a9fdb3df52 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[20] status=0x1 Success gas=1000000 gasUsed=108315 costETH=0.00021663 costUSD=0.0431461971 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=4 txId=0x3b05f782b696b9969a3f532f873c3cd540564333eda7382b80471613a86ec6a7 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[21] status=0x1 Success gas=1000000 gasUsed=141296 costETH=0.000282592 costUSD=0.05628384864 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=5 txId=0x7deb7ab30551d4542e9d50ea38d7bdd025551c401fabc1c590d54e2e58cf2856 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[22] status=0x1 Success gas=1000000 gasUsed=167484 costETH=0.000334968 costUSD=0.06671557656 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=6 txId=0x80aabf334972576e5c523dc3ec7d5f061ea7367bf5361278af242d364bbdb604 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[23] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=7 txId=0x0eb6014af41fae0f28261ca90d57c1922e4fb55faf26a71f8d0b8788f9a11229 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[24] status=0x1 Success gas=1000000 gasUsed=104201 costETH=0.000208402 costUSD=0.04150742634 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=8 txId=0x6d8fd3272f6be5b3351e1b898436f73c3e4d01c7e37cf8c2dc1de50add1a588b @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[25] status=0x1 Success gas=1000000 gasUsed=100784 costETH=0.000201568 costUSD=0.04014629856 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=9 txId=0x45b1ae97a3223a3bc4aca81b81e129a0a158e8ebc29e1897a0ce55398349ccb9 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[26] status=0x1 Success gas=1000000 gasUsed=100797 costETH=0.000201594 costUSD=0.04015147698 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=10 txId=0x7e4ab35d825283ebbe331eff62c5574068dc4371a2e8ad06919e90b4207f8401 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[27] status=0x1 Success gas=1000000 gasUsed=141329 costETH=0.000282658 costUSD=0.05629699386 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=11 txId=0x35efe62545c2c9e268f2a286f6f3bc7e195c4df0d254ceada82fecd7f428201a @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[28] status=0x1 Success gas=1000000 gasUsed=100424 costETH=0.000200848 costUSD=0.04000289616 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=12 txId=0x4187adbee65f9161b326e6142767948e25f014860f46aa865da8993f697e55e5 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[29] status=0x1 Success gas=1000000 gasUsed=108312 costETH=0.000216624 costUSD=0.04314500208 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=13 txId=0xbc1b73a0c569ddf5e701acdc02fffbdb76616f7af02813baed5745f224588f15 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[30] status=0x1 Success gas=1000000 gasUsed=167842 costETH=0.000335684 costUSD=0.06685818228 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=14 txId=0xd6984567a85a7c3f2813df53fca82200c0c9bdb4a45030a880f6cf150a343762 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC +setup_1Tx[31] status=0x1 Success gas=1000000 gasUsed=104569 costETH=0.000209138 costUSD=0.04165401546 @ ETH/USD=199.17 gasPrice=2 gwei block=2553 txIx=15 txId=0x02ab7d42486a42e8e5b8aee76739f06627c439e91caa8bc4859e294e49893764 @ 1551012151 Sun, 24 Feb 2019 12:42:31 UTC minGasUsedInsert=68318 averageGasUsedInsert=112496.21875 maxGasUsedInsert=167842 @@ -381,7 +381,7 @@ testRedBlackTree.last=32 -------------------------------------------------------------------------------- PASS Insert Data #5 - Cannot Insert Duplicate - testRaw.insert(14) -insertData5_tx status=0x0 Failure gas=1000000 gasUsed=22790 costETH=0.00004558 costUSD=0.0090781686 @ ETH/USD=199.17 gasPrice=2 gwei block=1912 txIx=0 txId=0x23ee3ad72915def04e7ea14cab041e5b3c4c88408995fabd0bef008a95353e91 @ 1551011510 Sun, 24 Feb 2019 12:31:50 UTC +insertData5_tx status=0x0 Failure gas=1000000 gasUsed=22790 costETH=0.00004558 costUSD=0.0090781686 @ ETH/USD=199.17 gasPrice=2 gwei block=2560 txIx=0 txId=0x5c297f2eab5cc2e5a0c85135958d9a4419faa8a08f9261d3df9979a3aa3a1868 @ 1551012158 Sun, 24 Feb 2019 12:42:38 UTC ----- Remove Data #1 - Cannot Remove Non-Existent Key ----- -------------------------------------------------------------------------------- @@ -424,7 +424,7 @@ testRedBlackTree.last=32 -------------------------------------------------------------------------------- PASS Remove Data #1 - Cannot Remove Non-Existent Key - testRaw.remove(114) -removeData1_tx status=0x0 Failure gas=1000000 gasUsed=22542 costETH=0.000045084 costUSD=0.00897938028 @ ETH/USD=199.17 gasPrice=2 gwei block=1915 txIx=0 txId=0xa97cb3d28c051f1f1cffed5582d6b74b1d9e46491b65425ed17fbbaed297f4ed @ 1551011513 Sun, 24 Feb 2019 12:31:53 UTC +removeData1_tx status=0x0 Failure gas=1000000 gasUsed=22542 costETH=0.000045084 costUSD=0.00897938028 @ ETH/USD=199.17 gasPrice=2 gwei block=2563 txIx=0 txId=0xd6fb03f4ad99d822de17724e8766127bd469ada3ae3876c7fabb11a8c866fdf2 @ 1551012161 Sun, 24 Feb 2019 12:42:41 UTC ----- Remove Data #2 ----- removeItems=[4,14,25,32,2,30,16,31,6,26,18,22,28,23,12,15,19,27,7,13,29,11,3,5,17,1,24,20,9,8,21,10] @@ -581,38 +581,38 @@ PASS Remove Data #2 - testRaw.remove(9) PASS Remove Data #2 - testRaw.remove(8) PASS Remove Data #2 - testRaw.remove(21) PASS Remove Data #2 - testRaw.remove(10) -tx[0] status=0x1 Success gas=1000000 gasUsed=56969 costETH=0.000113938 costUSD=0.02269303146 @ ETH/USD=199.17 gasPrice=2 gwei block=1918 txIx=0 txId=0xe08724bab1cc09e3796c27a19e53e82f5a8b26a36b673b71f16afcfcc72ee58b @ 1551011516 Sun, 24 Feb 2019 12:31:56 UTC -tx[1] status=0x1 Success gas=1000000 gasUsed=79499 costETH=0.000158998 costUSD=0.03166763166 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=0 txId=0x84d8a42645b8821c5db8687eac827732ae172a056451c88183441861c5d88813 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -tx[2] status=0x1 Success gas=1000000 gasUsed=64463 costETH=0.000128926 costUSD=0.02567819142 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=1 txId=0x50e0b799d01b71db2863432e17217b78403c46ea9fb4256a546f9494ca2d9c89 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -tx[3] status=0x1 Success gas=1000000 gasUsed=119594 costETH=0.000239188 costUSD=0.04763907396 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=2 txId=0x0ddb8afe8e999629984d4894c4af49a6c22669339e7467624525ecd9b04cc0d4 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -tx[4] status=0x1 Success gas=1000000 gasUsed=71701 costETH=0.000143402 costUSD=0.02856137634 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=3 txId=0x1a7910545c1eb5186f644641728bc99f6b747a50d40fe65e0a745ce5c32f6379 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -tx[5] status=0x1 Success gas=1000000 gasUsed=148078 costETH=0.000296156 costUSD=0.05898539052 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=4 txId=0x0d8547f079cafddc8254023093abd26ff4e50ffb29444df8210e786da9a42410 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -tx[6] status=0x1 Success gas=1000000 gasUsed=30542 costETH=0.000061084 costUSD=0.01216610028 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=5 txId=0x6de8cdfdbeef17ef96d291f102ed63aef5b6a940d5ca78c02a9f5c56221dc614 @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -tx[7] status=0x1 Success gas=1000000 gasUsed=30691 costETH=0.000061382 costUSD=0.01222545294 @ ETH/USD=199.17 gasPrice=2 gwei block=1919 txIx=6 txId=0xddc8e5f77ee6a2bbe2a8c6a26e9d9f2e5d249d7f7cf289a9d174e6682645baff @ 1551011517 Sun, 24 Feb 2019 12:31:57 UTC -tx[8] status=0x1 Success gas=1000000 gasUsed=82535 costETH=0.00016507 costUSD=0.0328769919 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=0 txId=0xf28b97eadf872939e4567a45b60d0eb51fc5e7b81aefd80d253a7edc597a79b1 @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -tx[9] status=0x1 Success gas=1000000 gasUsed=97447 costETH=0.000194894 costUSD=0.03881703798 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=1 txId=0x9bb2832863f0bf08d4bd6984edbeedd1cf5b70b6d25ea4d1cbc8c6bb12cdac84 @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -tx[10] status=0x1 Success gas=1000000 gasUsed=57118 costETH=0.000114236 costUSD=0.02275238412 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=2 txId=0x7d05b6c854044ff32b3434290f33696f7e31cb82d2fc65ee3a2be4112454906e @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -tx[11] status=0x1 Success gas=1000000 gasUsed=82768 costETH=0.000165536 costUSD=0.03296980512 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=3 txId=0xa2eae7e1dc9c2dad1dbd82357d3a4f1aa1ecacde35ecf6c11a94b7982d3110ce @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -tx[12] status=0x1 Success gas=1000000 gasUsed=120384 costETH=0.000240768 costUSD=0.04795376256 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=4 txId=0x5157b5db8a62bd89151af626f4c34adb7b1164c5e53e9dd837bf263dede7894c @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -tx[13] status=0x1 Success gas=1000000 gasUsed=98048 costETH=0.000196096 costUSD=0.03905644032 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=5 txId=0x6aa8491f641bbc79d48ea9ca0fd3a460bcdab8a5f77652777e9ef8bd107b1139 @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -tx[14] status=0x1 Success gas=1000000 gasUsed=71694 costETH=0.000143388 costUSD=0.02855858796 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=6 txId=0x527be763290e0c4ef05a31bc65a7f4b256a3dd93a3ab5212fd38deab4779ef6f @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -tx[15] status=0x1 Success gas=1000000 gasUsed=162848 costETH=0.000325696 costUSD=0.06486887232 @ ETH/USD=199.17 gasPrice=2 gwei block=1923 txIx=7 txId=0x332448206a8079531457a4d30c8243625a0e821ec4b20bad91f86592fb958287 @ 1551011521 Sun, 24 Feb 2019 12:32:01 UTC -tx[16] status=0x1 Success gas=1000000 gasUsed=79350 costETH=0.0001587 costUSD=0.031608279 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=0 txId=0xa50f038d850972610a3f9f11d73f882f0271ecda539bfc06f08addcee7c08fba @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -tx[17] status=0x1 Success gas=1000000 gasUsed=30542 costETH=0.000061084 costUSD=0.01216610028 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=1 txId=0xf66ded03074172be0a3de0704988a8c14c7498d014d0871d58363cce216cb3d7 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -tx[18] status=0x1 Success gas=1000000 gasUsed=64774 costETH=0.000129548 costUSD=0.02580207516 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=2 txId=0x47394a2e4262f84f0393384b98ef7ce7efd02cdc609301addf69869ee5797cb2 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -tx[19] status=0x1 Success gas=1000000 gasUsed=97434 costETH=0.000194868 costUSD=0.03881185956 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=3 txId=0x223f6ab75997a2b0dc05c95d3d5b39170b9293991056a96114684871b6faf90d @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -tx[20] status=0x1 Success gas=1000000 gasUsed=124842 costETH=0.000249684 costUSD=0.04972956228 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=4 txId=0x09e844a3eeba65027d81ef31d06920b10d7c63083d0581003aee711a8faf9034 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -tx[21] status=0x1 Success gas=1000000 gasUsed=45280 costETH=0.00009056 costUSD=0.0180368352 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=5 txId=0x5eed0cee35e36ec1c06a013e6ac919de79ba0b6e5164a9c138f7517c8a307fb2 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -tx[22] status=0x1 Success gas=1000000 gasUsed=190402 costETH=0.000380804 costUSD=0.07584473268 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=6 txId=0x541164156f3f726fd02338d2fcb7c64b2a975cdda882a415af61bb7f7e01eff6 @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -tx[23] status=0x1 Success gas=1000000 gasUsed=30698 costETH=0.000061396 costUSD=0.01222824132 @ ETH/USD=199.17 gasPrice=2 gwei block=1927 txIx=7 txId=0x76ffcccbd0d08008c5127d1a71d53b898f98cfbb8bc32e435cecb79c44b3b98c @ 1551011525 Sun, 24 Feb 2019 12:32:05 UTC -tx[24] status=0x1 Success gas=1000000 gasUsed=119605 costETH=0.00023921 costUSD=0.0476434557 @ ETH/USD=199.17 gasPrice=2 gwei block=1929 txIx=0 txId=0x68cb1b7bc16cbc42d4e272ba7879172b9439f29dd00c48e6aa65183167c2c4ee @ 1551011527 Sun, 24 Feb 2019 12:32:07 UTC -tx[25] status=0x1 Success gas=1000000 gasUsed=97494 costETH=0.000194988 costUSD=0.03883575996 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=0 txId=0xac3a82f47a2644d16e88b9a1dad9475a30110997e231075e50d4dc575463f556 @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -tx[26] status=0x1 Success gas=1000000 gasUsed=59796 costETH=0.000119592 costUSD=0.02381913864 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=1 txId=0x4c43f0af041147d96b5b097995a017529f3a449ccefe3ad4f98b1f3bc5c35b86 @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -tx[27] status=0x1 Success gas=1000000 gasUsed=45280 costETH=0.00009056 costUSD=0.0180368352 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=2 txId=0xcbbb69ddea4194374c1992af264d780b9d121c262b587025e4947796573901a4 @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -tx[28] status=0x1 Success gas=1000000 gasUsed=45273 costETH=0.000090546 costUSD=0.01803404682 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=3 txId=0x3655b642c7747a9f952b23bdc281a4a9c8092e6634bf2f71c10ee4fca3cd826d @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -tx[29] status=0x1 Success gas=1000000 gasUsed=74318 costETH=0.000148636 costUSD=0.02960383212 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=4 txId=0x40474197162c4218e54a543a3d4a169648549e73933bdc9b0f973ded2a80af27 @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -tx[30] status=0x1 Success gas=1000000 gasUsed=45273 costETH=0.000090546 costUSD=0.01803404682 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=5 txId=0xad0e99b78af88a72e037b5548c7e07cf751239294a1f168e87e932b65e67578e @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC -tx[31] status=0x1 Success gas=1000000 gasUsed=44876 costETH=0.000089752 costUSD=0.01787590584 @ ETH/USD=199.17 gasPrice=2 gwei block=1930 txIx=6 txId=0xbac9163d6f6d9f74fdef77d4de58b9fca43df4e31cc84523a1cee4aa7dcd370a @ 1551011528 Sun, 24 Feb 2019 12:32:08 UTC +tx[0] status=0x1 Success gas=1000000 gasUsed=56969 costETH=0.000113938 costUSD=0.02269303146 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=0 txId=0x518834dc4cb239d83332850698fa81060cc31cc6edf245af9fb0d2c48cde1714 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +tx[1] status=0x1 Success gas=1000000 gasUsed=79499 costETH=0.000158998 costUSD=0.03166763166 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=1 txId=0xd7557ae973d034cdacdc95f009fe86b976ceadb3b6e2842225b4ec4d7af9d84a @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +tx[2] status=0x1 Success gas=1000000 gasUsed=64463 costETH=0.000128926 costUSD=0.02567819142 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=2 txId=0x76a986417ff715a99c8fa14f38ee7f38052f01bed9e33d4991617e6baefd2650 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +tx[3] status=0x1 Success gas=1000000 gasUsed=119594 costETH=0.000239188 costUSD=0.04763907396 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=3 txId=0x2a3dbb788d7fbe64a77da513224598b1a22371532005b8786c660fe53051fae8 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +tx[4] status=0x1 Success gas=1000000 gasUsed=71701 costETH=0.000143402 costUSD=0.02856137634 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=4 txId=0x8dcf73fc2dbf05d3b6168a9052115736fa680550653c29e486cde55696ee0263 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +tx[5] status=0x1 Success gas=1000000 gasUsed=148078 costETH=0.000296156 costUSD=0.05898539052 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=5 txId=0xf0e9c405240f1128a4b758f51d2ab2b9f2bb242c91f070356dabe2188c1cbb09 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +tx[6] status=0x1 Success gas=1000000 gasUsed=30542 costETH=0.000061084 costUSD=0.01216610028 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=6 txId=0x16c27a8469bbcd4e520a370b7e47ac388dbd03b247e971344ff97d4e30611c60 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +tx[7] status=0x1 Success gas=1000000 gasUsed=30691 costETH=0.000061382 costUSD=0.01222545294 @ ETH/USD=199.17 gasPrice=2 gwei block=2566 txIx=7 txId=0xbcac725b32c86fa154eb5f37116b585337c91b2013ce194aee83f43f57e2bd53 @ 1551012164 Sun, 24 Feb 2019 12:42:44 UTC +tx[8] status=0x1 Success gas=1000000 gasUsed=82535 costETH=0.00016507 costUSD=0.0328769919 @ ETH/USD=199.17 gasPrice=2 gwei block=2569 txIx=0 txId=0x70224515d54a187ac8bb3d14259b130a35763f7388c91a6df91dd91f7cede5a4 @ 1551012167 Sun, 24 Feb 2019 12:42:47 UTC +tx[9] status=0x1 Success gas=1000000 gasUsed=97447 costETH=0.000194894 costUSD=0.03881703798 @ ETH/USD=199.17 gasPrice=2 gwei block=2569 txIx=1 txId=0x1591209f3b92ed8d3e6e70a613e30ee50e1809219d1419856900c42459eeb23c @ 1551012167 Sun, 24 Feb 2019 12:42:47 UTC +tx[10] status=0x1 Success gas=1000000 gasUsed=57118 costETH=0.000114236 costUSD=0.02275238412 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=0 txId=0xc1d29c9587723ffa83f341ef208356adeb2551d4848c5fb0f3e2e0e07af47461 @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +tx[11] status=0x1 Success gas=1000000 gasUsed=82768 costETH=0.000165536 costUSD=0.03296980512 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=1 txId=0x5d802a83f78023d8580b9001bf9909c7ac2986824f0c241061ba2148128e80cf @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +tx[12] status=0x1 Success gas=1000000 gasUsed=120384 costETH=0.000240768 costUSD=0.04795376256 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=2 txId=0x56fa46a17fc63890189526596c3848be24f7fba91a7d45fa3f95e4b1ed7917c7 @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +tx[13] status=0x1 Success gas=1000000 gasUsed=98048 costETH=0.000196096 costUSD=0.03905644032 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=3 txId=0x7028576732272c0ccfe643002d2b4360b6e58fbb38ab346ae98d4547914caa26 @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +tx[14] status=0x1 Success gas=1000000 gasUsed=71694 costETH=0.000143388 costUSD=0.02855858796 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=4 txId=0x726be6583e08586ae657f1e9c35acc167bd3e222e933e8cdf7718ca2d173605f @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +tx[15] status=0x1 Success gas=1000000 gasUsed=162848 costETH=0.000325696 costUSD=0.06486887232 @ ETH/USD=199.17 gasPrice=2 gwei block=2570 txIx=5 txId=0x672aa691bcf7e0af7b7d9aa486db6fac3f206f15297142ab1def70fd0dcb8342 @ 1551012168 Sun, 24 Feb 2019 12:42:48 UTC +tx[16] status=0x1 Success gas=1000000 gasUsed=79350 costETH=0.0001587 costUSD=0.031608279 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=0 txId=0x1f901c9238d81e25696e5b7b59b28508af1057e9994f6710b11ee0ae957ca659 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +tx[17] status=0x1 Success gas=1000000 gasUsed=30542 costETH=0.000061084 costUSD=0.01216610028 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=1 txId=0x3f04851c8b2b5ccd5e96be8049a234fa2e99f1398798befe98e113eb44177475 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +tx[18] status=0x1 Success gas=1000000 gasUsed=64774 costETH=0.000129548 costUSD=0.02580207516 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=2 txId=0x7f394cc558623657ed5441c2cc5a11728ae0fbe51393dba1dab1f9e655c56ffc @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +tx[19] status=0x1 Success gas=1000000 gasUsed=97434 costETH=0.000194868 costUSD=0.03881185956 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=3 txId=0x6fd6147f082c3ad5fa9b42ddb5079a5f2a61437fec8ec30d7006baebc47b0730 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +tx[20] status=0x1 Success gas=1000000 gasUsed=124842 costETH=0.000249684 costUSD=0.04972956228 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=4 txId=0x01d5e85a6f38754ac77cf01bc023705e34d6e91ff4913202fafa25db142b2109 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +tx[21] status=0x1 Success gas=1000000 gasUsed=45280 costETH=0.00009056 costUSD=0.0180368352 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=5 txId=0xcb54c200bf472b937ada5a014a5c98807332f52609c04cd7e0244c49e7259735 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +tx[22] status=0x1 Success gas=1000000 gasUsed=190402 costETH=0.000380804 costUSD=0.07584473268 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=6 txId=0x6546694179657cc3c1bca94cc64323fd288bafe9293027ccaf3683ebb9b10b21 @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +tx[23] status=0x1 Success gas=1000000 gasUsed=30698 costETH=0.000061396 costUSD=0.01222824132 @ ETH/USD=199.17 gasPrice=2 gwei block=2573 txIx=7 txId=0x567cec793b6ed1ce5e367ec6bc4c726cc4889635b4c202c290b50573268dcede @ 1551012171 Sun, 24 Feb 2019 12:42:51 UTC +tx[24] status=0x1 Success gas=1000000 gasUsed=119605 costETH=0.00023921 costUSD=0.0476434557 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=0 txId=0x5589899bb5944a83a4087d5789091c5410208a5a98a3c33c555cad4d6caaecff @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +tx[25] status=0x1 Success gas=1000000 gasUsed=97494 costETH=0.000194988 costUSD=0.03883575996 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=1 txId=0x9e4c579c41bebd66f176ac4f7290723e8d8103564fc29675a2ba0b3221a228af @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +tx[26] status=0x1 Success gas=1000000 gasUsed=59796 costETH=0.000119592 costUSD=0.02381913864 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=2 txId=0xafcc5c2e2a07e4b30e62063730682401ee207eab066bf11755a9ab0e44698503 @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +tx[27] status=0x1 Success gas=1000000 gasUsed=45280 costETH=0.00009056 costUSD=0.0180368352 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=3 txId=0xd0f4daf1a6e32165e8b7ac663009e663a4f98abac7fc55c0c2d7494df8a8f1df @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +tx[28] status=0x1 Success gas=1000000 gasUsed=45273 costETH=0.000090546 costUSD=0.01803404682 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=4 txId=0x2c854144ea6dc6e8cca017310da7ae1313f60c0efd99c42c2a25c347f5cc14dd @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +tx[29] status=0x1 Success gas=1000000 gasUsed=74318 costETH=0.000148636 costUSD=0.02960383212 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=5 txId=0x85fd7bf16ab7678cdb433a3ed3ebf151f1b2f1ed5745d6051564546033b22a81 @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +tx[30] status=0x1 Success gas=1000000 gasUsed=45273 costETH=0.000090546 costUSD=0.01803404682 @ ETH/USD=199.17 gasPrice=2 gwei block=2575 txIx=6 txId=0xd0eca30c90a55492223dd8e16def075d832cd53c5730e099237175a57c180e3a @ 1551012173 Sun, 24 Feb 2019 12:42:53 UTC +tx[31] status=0x1 Success gas=1000000 gasUsed=44876 costETH=0.000089752 costUSD=0.01787590584 @ ETH/USD=199.17 gasPrice=2 gwei block=2576 txIx=0 txId=0xeba6c7c0d888d92a2263371d29689614a3e85aa18720c7767757e00567e55b8e @ 1551012174 Sun, 24 Feb 2019 12:42:54 UTC minGasUsedRemove=30542 averageGasUsedRemove=80300.5 maxGasUsedRemove=190402