Skip to content

Commit

Permalink
Merge pull request #759 from AntelopeIO/snapshot-api
Browse files Browse the repository at this point in the history
Programmable snapshots API
  • Loading branch information
vladtr authored Mar 16, 2023
2 parents 326c169 + 17c4ce3 commit e3b31cd
Show file tree
Hide file tree
Showing 13 changed files with 950 additions and 51 deletions.
6 changes: 6 additions & 0 deletions libraries/chain/include/eosio/chain/exceptions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,12 @@ namespace eosio { namespace chain {
3170011, "The signer returned no valid block signatures" )
FC_DECLARE_DERIVED_EXCEPTION( unsupported_multiple_block_signatures, producer_exception,
3170012, "The signer returned multiple signatures but that is not supported" )
FC_DECLARE_DERIVED_EXCEPTION( duplicate_snapshot_request, producer_exception,
3170013, "Snapshot has been already scheduled with specified parameters" )
FC_DECLARE_DERIVED_EXCEPTION( snapshot_request_not_found, producer_exception,
3170014, "Snapshot request not found" )
FC_DECLARE_DERIVED_EXCEPTION( invalid_snapshot_request, producer_exception,
3170015, "Invalid snapshot request" )

FC_DECLARE_DERIVED_EXCEPTION( reversible_blocks_exception, chain_exception,
3180000, "Reversible Blocks exception" )
Expand Down
Loading

0 comments on commit e3b31cd

Please sign in to comment.