Added case for requests not being tributes

This commit is contained in:
Richard Ramos 2018-03-16 15:32:36 -04:00
parent b5514ec437
commit 5272171a17

View File

@ -119,6 +119,8 @@ contract MessageTribute is Controlled {
} else {
balances[_to] += amount;
}
} else {
balances[_to] += amount;
}
}