Skip to content

Commit

Permalink
[submodule] refs #8 Update submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
Maykel Arias Torres committed Oct 17, 2018
1 parent 37035be commit ea53d20
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions LibskycoinNet/skycoin/skycoinnet_wrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,9 @@ FeeCalculator overflow(){
int keysCount = 4;
int keyIndex = -1;
int startNumber = -1;
for (int i = 0; i < length; i++)
int i;
int k;
for (i = 0; i < length; i++)
{
if (metadata[i] == '\"')
{
Expand All @@ -1171,7 +1173,7 @@ FeeCalculator overflow(){
{
keyIndex = -1;
metadata[i] = 0;
for (int k = 0; k < keysCount; k++)
for (k = 0; k < keysCount; k++)
{
if (strcmp(metadata + openingQuote + 1, keys[k]) == 0)
{
Expand Down Expand Up @@ -1303,7 +1305,8 @@ FeeCalculator overflow(){
parray->count = parray->count = n;
coin__UxOut *p = (coin__UxOut *)parray->data;
int result = 0;
for (int i = 0; i < n; i++)
int i;
for (i = 0; i < n; i++)
{
result = makeUxOut(p);
if (result != 0)
Expand Down Expand Up @@ -1380,7 +1383,8 @@ FeeCalculator overflow(){
if (result != 0)
return 1;
registerHandleClose(*handle);
for (int i = 0; i < n; i++)
int i;
for (i = 0; i < n; i++)
{
Transaction__Handle thandle;
makeTransaction(&thandle);
Expand Down
2 changes: 1 addition & 1 deletion gopath/src/github.com/skycoin/skycoin

0 comments on commit ea53d20

Please sign in to comment.