mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
21 lines
555 B
C
21 lines
555 B
C
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_POWRESULT_H_INCLUDED
|
|
#define RIPPLE_POWRESULT_H_INCLUDED
|
|
|
|
enum PowResult
|
|
{
|
|
powOK = 0,
|
|
powREUSED = 1, // already submitted
|
|
powBADNONCE = 2, // you didn't solve it
|
|
powEXPIRED = 3, // time is up
|
|
powCORRUPT = 4,
|
|
powTOOEASY = 5, // the difficulty increased too much while you solved it
|
|
};
|
|
|
|
#endif
|