Separate ledger publish logic so we can tell if clients are overloading us.

This commit is contained in:
JoelKatz
2012-11-23 12:15:04 -08:00
parent 4065106592
commit 8b53f85f60
5 changed files with 10 additions and 5 deletions

View File

@@ -36,10 +36,11 @@ enum JobType
jtCLIENT = 10,
jtPEER = 11,
jtDISK = 12,
jtLEDGER = 13,
jtRPC = 14,
jtRPC = 13,
jtACCEPTLEDGER = 14,
jtPUBLEDGER = 15,
};
#define NUM_JOB_TYPES 16
#define NUM_JOB_TYPES 24
class Job
{