Account access update for access type other than full access was not happening. Corrected the same.

This commit is contained in:
vsmk98 2019-02-19 10:48:03 +08:00
parent 7a0c016634
commit e37d066d72
2 changed files with 4 additions and 1 deletions

View File

@ -405,6 +405,9 @@ contract Permissions {
numFullAccessAccts --;
acctAccessList[acctIndex].acctAccess = _accountAccess;
}
else {
acctAccessList[acctIndex].acctAccess = _accountAccess;
}
}
else{
numberOfAccts ++;

File diff suppressed because one or more lines are too long