bugfix, add status

This commit is contained in:
Aditya Kulkarni
2018-10-25 12:22:25 -07:00
parent 4eae53ea21
commit cf18b710d4
2 changed files with 18 additions and 6 deletions

View File

@@ -13,6 +13,15 @@ struct TurnstileMigrationItem {
int blockNumber;
double amount;
bool chaff;
int status;
};
enum TurnstileMigrationItemStatus {
NotStarted = 0,
SentToT,
SentToZS,
NotEnoughBalance,
UnknownError
};
class Turnstile