|
|
@ -49,27 +49,28 @@ struct FeeTooSmall: virtual dev::Exception {}; |
|
|
|
struct TooMuchGasUsed: virtual dev::Exception {}; |
|
|
|
struct ExtraDataTooBig: virtual dev::Exception {}; |
|
|
|
struct InvalidSignature: virtual dev::Exception {}; |
|
|
|
class InvalidBlockFormat: virtual public dev::Exception {}; |
|
|
|
struct InvalidBlockFormat: virtual dev::Exception {}; |
|
|
|
struct InvalidUnclesHash: virtual dev::Exception {}; |
|
|
|
struct InvalidUncle: virtual dev::Exception {}; |
|
|
|
struct TooManyUncles: virtual dev::Exception {}; |
|
|
|
struct UncleTooOld: virtual dev::Exception {}; |
|
|
|
class UncleInChain: virtual public dev::Exception {}; |
|
|
|
struct UncleIsBrother: virtual dev::Exception {}; |
|
|
|
struct UncleInChain: virtual dev::Exception {}; |
|
|
|
struct DuplicateUncleNonce: virtual dev::Exception {}; |
|
|
|
struct InvalidStateRoot: virtual dev::Exception {}; |
|
|
|
struct InvalidGasUsed: virtual dev::Exception {}; |
|
|
|
class InvalidTransactionsHash: virtual public dev::Exception {}; |
|
|
|
struct InvalidTransactionsHash: virtual dev::Exception {}; |
|
|
|
struct InvalidTransaction: virtual dev::Exception {}; |
|
|
|
struct InvalidDifficulty: virtual dev::Exception {}; |
|
|
|
class InvalidGasLimit: virtual public dev::Exception {}; |
|
|
|
struct InvalidGasLimit: virtual dev::Exception {}; |
|
|
|
struct InvalidTransactionGasUsed: virtual dev::Exception {}; |
|
|
|
struct InvalidTransactionsStateRoot: virtual dev::Exception {}; |
|
|
|
struct InvalidReceiptsStateRoot: virtual dev::Exception {}; |
|
|
|
struct InvalidTimestamp: virtual dev::Exception {}; |
|
|
|
struct InvalidLogBloom: virtual dev::Exception {}; |
|
|
|
class InvalidNonce: virtual public dev::Exception {}; |
|
|
|
class InvalidBlockHeaderItemCount: virtual public dev::Exception {}; |
|
|
|
class InvalidBlockNonce: virtual public dev::Exception {}; |
|
|
|
struct InvalidNonce: virtual dev::Exception {}; |
|
|
|
struct InvalidBlockHeaderItemCount: virtual dev::Exception {}; |
|
|
|
struct InvalidBlockNonce: virtual dev::Exception {}; |
|
|
|
struct InvalidParentHash: virtual dev::Exception {}; |
|
|
|
struct InvalidNumber: virtual dev::Exception {}; |
|
|
|
struct InvalidContractAddress: virtual public dev::Exception {}; |
|
|
|