Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
didi
github_repo_test
Commits
b659db45
Commit
b659db45
authored
Jul 29, 2017
by
didi
Browse files
fixed copy'n paste mistake
parent
e1449f1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
backend/contracts/Streem.sol
View file @
b659db45
...
...
@@ -153,7 +153,7 @@ contract Streem {
uint256
inStreamBal
=
exists
(
inS
)
?
streamBalance
(
inS
)
:
0
;
var
outS
=
outStreams
[
_owner
];
uint256
outStreamBal
=
exists
(
in
S
)
?
streamBalance
(
outS
)
:
0
;
uint256
outStreamBal
=
exists
(
out
S
)
?
streamBalance
(
outS
)
:
0
;
// TODO: check overflow before casting
return
staticBalances
[
_owner
]
+
inStreamBal
-
outStreamBal
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment