Skip to content

Commit bc0535f

Browse files
committed
dapp init SolidityStringutils
1 parent 4c36b49 commit bc0535f

13 files changed

+50
-0
lines changed

.dapple/chain_db/000044.ldb

1.03 KB
Binary file not shown.

.dapple/chain_db/000046.ldb

326 Bytes
Binary file not shown.

.dapple/chain_db/000047.log

172 Bytes
Binary file not shown.

.dapple/chain_db/CURRENT

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
MANIFEST-000045

.dapple/chain_db/LOCK

Whitespace-only changes.

.dapple/chain_db/LOG

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2018/03/28-01:47:46.068690 7000108be000 Recovering log #43
2+
2018/03/28-01:47:46.069790 7000108be000 Level-0 table #46: started
3+
2018/03/28-01:47:46.070563 7000108be000 Level-0 table #46: 326 bytes OK
4+
2018/03/28-01:47:46.071929 7000108be000 Delete type=3 #41
5+
2018/03/28-01:47:46.072151 7000108be000 Delete type=0 #43

.dapple/chain_db/LOG.old

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2018/03/27-23:46:03.906333 700004c31000 Recovering log #40
2+
2018/03/27-23:46:03.907095 700004c31000 Level-0 table #42: started
3+
2018/03/27-23:46:03.908196 700004c31000 Level-0 table #42: 326 bytes OK
4+
2018/03/27-23:46:03.909382 700004c31000 Delete type=3 #39
5+
2018/03/27-23:46:03.909545 700004c31000 Delete type=0 #40
6+
2018/03/27-23:46:03.909769 700004cb4000 Compacting 4@0 + 1@1 files
7+
2018/03/27-23:46:03.910326 700004cb4000 Generated table #44@0: 7 keys, 1057 bytes
8+
2018/03/27-23:46:03.910347 700004cb4000 Compacted 4@0 + 1@1 files => 1057 bytes
9+
2018/03/27-23:46:03.910532 700004cb4000 compacted to: files[ 0 1 0 0 0 0 0 ]
10+
2018/03/27-23:46:03.910654 700004cb4000 Delete type=2 #29
11+
2018/03/27-23:46:03.910850 700004cb4000 Delete type=2 #34
12+
2018/03/27-23:46:03.911010 700004cb4000 Delete type=2 #37
13+
2018/03/27-23:46:03.911151 700004cb4000 Delete type=2 #31
14+
2018/03/27-23:46:03.911293 700004cb4000 Delete type=2 #42

.dapple/chain_db/MANIFEST-000045

267 Bytes
Binary file not shown.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/chain_db//out

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
all :; dapp build
2+
clean :; dapp clean
3+
test :; dapp test
4+
deploy :; dapp create SolidityStringutils

build/__dapplesourcemap__

Whitespace-only changes.

src/SolidityStringutils.sol

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pragma solidity ^0.4.21;
2+
3+
contract SolidityStringutils {
4+
}

src/SolidityStringutils.t.sol

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pragma solidity ^0.4.21;
2+
3+
import "ds-test/test.sol";
4+
5+
import "./SolidityStringutils.sol";
6+
7+
contract SolidityStringutilsTest is DSTest {
8+
SolidityStringutils stringutils;
9+
10+
function setUp() public {
11+
stringutils = new SolidityStringutils();
12+
}
13+
14+
function testFail_basic_sanity() public {
15+
assertTrue(false);
16+
}
17+
18+
function test_basic_sanity() public {
19+
assertTrue(true);
20+
}
21+
}

0 commit comments

Comments
 (0)