Fix soliditi error

This commit is contained in:
Jordi Baylina 2017-09-18 16:23:17 +02:00
parent 34e928ced9
commit 1f0c5fd987
No known key found for this signature in database
GPG Key ID: 7480C80C1BE43112
6 changed files with 34 additions and 14 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -664,6 +664,14 @@ contract LiquidPledging is LiquidPledgingBase {
}
}
function mNormalizeNote(uint[] notes) returns(uint64) {
for (uint i = 0; i < notes.length; i++ ) {
uint64 idNote = uint64( notes[i] & (D64-1) );
normalizeNote(idNote);
}
}
////////
// Private methods
///////
@ -777,7 +785,9 @@ contract LiquidPledging is LiquidPledgingBase {
// do what this function does to the note for the end user at the expiration of the committime)
// #2: It checks to make sure that if there has been a cancellation in the chain of projects,
// then it adjusts the note's owner appropriately.
function normalizeNote(uint64 idNote) internal returns(uint64) {
// This call can be called from any body at any time on any node. In general it can be called
// to froce the calls of the affected plugins.
function normalizeNote(uint64 idNote) returns(uint64) {
Note storage n = findNote(idNote);
// Check to make sure this note hasnt already been used or is in the process of being used

View File

@ -664,6 +664,14 @@ contract LiquidPledging is LiquidPledgingBase {
}
}
function mNormalizeNote(uint[] notes) returns(uint64) {
for (uint i = 0; i < notes.length; i++ ) {
uint64 idNote = uint64( notes[i] & (D64-1) );
normalizeNote(idNote);
}
}
////////
// Private methods
///////
@ -777,7 +785,9 @@ contract LiquidPledging is LiquidPledgingBase {
// do what this function does to the note for the end user at the expiration of the committime)
// #2: It checks to make sure that if there has been a cancellation in the chain of projects,
// then it adjusts the note's owner appropriately.
function normalizeNote(uint64 idNote) internal returns(uint64) {
// This call can be called from any body at any time on any node. In general it can be called
// to froce the calls of the affected plugins.
function normalizeNote(uint64 idNote) returns(uint64) {
Note storage n = findNote(idNote);
// Check to make sure this note hasnt already been used or is in the process of being used

View File

@ -280,7 +280,7 @@ contract LiquidPledging is LiquidPledgingBase {
for (uint i = 0; i < notes.length; i++ ) {
uint64 idNote = uint64( notes[i] & (D64-1) );
normalizeNote(idNote, amount);
normalizeNote(idNote);
}
}

View File

@ -1,6 +1,6 @@
{
"name": "liquidpledging",
"version": "0.0.6",
"version": "0.0.7",
"description": "Liquid Pledging Smart Contract",
"main": "index.js",
"directories": {