Skip to content

Commit

Permalink
dapp init SolidityStringutils
Browse files Browse the repository at this point in the history
  • Loading branch information
ovangle committed Mar 27, 2018
1 parent 4c36b49 commit bc0535f
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 0 deletions.
Binary file added .dapple/chain_db/000044.ldb
Binary file not shown.
Binary file added .dapple/chain_db/000046.ldb
Binary file not shown.
Binary file added .dapple/chain_db/000047.log
Binary file not shown.
1 change: 1 addition & 0 deletions .dapple/chain_db/CURRENT
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MANIFEST-000045
Empty file added .dapple/chain_db/LOCK
Empty file.
5 changes: 5 additions & 0 deletions .dapple/chain_db/LOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
2018/03/28-01:47:46.068690 7000108be000 Recovering log #43
2018/03/28-01:47:46.069790 7000108be000 Level-0 table #46: started
2018/03/28-01:47:46.070563 7000108be000 Level-0 table #46: 326 bytes OK
2018/03/28-01:47:46.071929 7000108be000 Delete type=3 #41
2018/03/28-01:47:46.072151 7000108be000 Delete type=0 #43
14 changes: 14 additions & 0 deletions .dapple/chain_db/LOG.old
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
2018/03/27-23:46:03.906333 700004c31000 Recovering log #40
2018/03/27-23:46:03.907095 700004c31000 Level-0 table #42: started
2018/03/27-23:46:03.908196 700004c31000 Level-0 table #42: 326 bytes OK
2018/03/27-23:46:03.909382 700004c31000 Delete type=3 #39
2018/03/27-23:46:03.909545 700004c31000 Delete type=0 #40
2018/03/27-23:46:03.909769 700004cb4000 Compacting 4@0 + 1@1 files
2018/03/27-23:46:03.910326 700004cb4000 Generated table #44@0: 7 keys, 1057 bytes
2018/03/27-23:46:03.910347 700004cb4000 Compacted 4@0 + 1@1 files => 1057 bytes
2018/03/27-23:46:03.910532 700004cb4000 compacted to: files[ 0 1 0 0 0 0 0 ]
2018/03/27-23:46:03.910654 700004cb4000 Delete type=2 #29
2018/03/27-23:46:03.910850 700004cb4000 Delete type=2 #34
2018/03/27-23:46:03.911010 700004cb4000 Delete type=2 #37
2018/03/27-23:46:03.911151 700004cb4000 Delete type=2 #31
2018/03/27-23:46:03.911293 700004cb4000 Delete type=2 #42
Binary file added .dapple/chain_db/MANIFEST-000045
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/chain_db//out
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
all :; dapp build
clean :; dapp clean
test :; dapp test
deploy :; dapp create SolidityStringutils
Empty file added build/__dapplesourcemap__
Empty file.
4 changes: 4 additions & 0 deletions src/SolidityStringutils.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pragma solidity ^0.4.21;

contract SolidityStringutils {
}
21 changes: 21 additions & 0 deletions src/SolidityStringutils.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pragma solidity ^0.4.21;

import "ds-test/test.sol";

import "./SolidityStringutils.sol";

contract SolidityStringutilsTest is DSTest {
SolidityStringutils stringutils;

function setUp() public {
stringutils = new SolidityStringutils();
}

function testFail_basic_sanity() public {
assertTrue(false);
}

function test_basic_sanity() public {
assertTrue(true);
}
}

0 comments on commit bc0535f

Please sign in to comment.