Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[submodule "lib/ds-test"]
path = lib/ds-test
url = https://github.com/dapphub/ds-test
[submodule "lib/ds-thing"]
path = lib/ds-thing
url = https://github.com/dapphub/ds-thing
[submodule "lib/ds-auth"]
path = lib/ds-auth
url = https://github.com/dapphub/ds-auth
[submodule "lib/ds-note"]
path = lib/ds-note
url = https://github.com/dapphub/ds-note
[submodule "lib/ds-math"]
path = lib/ds-math
url = https://github.com/dapphub/ds-math
1 change: 1 addition & 0 deletions lib/ds-auth
Submodule ds-auth added at 7d9c6c
1 change: 1 addition & 0 deletions lib/ds-math
Submodule ds-math added at fa4542
1 change: 1 addition & 0 deletions lib/ds-note
Submodule ds-note added at 4f2ad3
1 change: 0 additions & 1 deletion lib/ds-thing
Submodule ds-thing deleted from baf65c
6 changes: 4 additions & 2 deletions src/value.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@

pragma solidity >=0.4.23;

import 'ds-thing/thing.sol';
import 'ds-auth/auth.sol';
import 'ds-note/note.sol';
import 'ds-math/math.sol';

contract DSValue is DSThing {
contract DSValue is DSAuth, DSNote, DSMath {
bool has;
bytes32 val;
function peek() public view returns (bytes32, bool) {
Expand Down