github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/sawtooth-core-master/validator/src/journal/mod.rs (about)

     1  /*
     2   * Copyright 2018 Intel Corporation
     3   *
     4   * Licensed under the Apache License, Version 2.0 (the "License");
     5   * you may not use this file except in compliance with the License.
     6   * You may obtain a copy of the License at
     7   *
     8   *     http://www.apache.org/licenses/LICENSE-2.0
     9   *
    10   * Unless required by applicable law or agreed to in writing, software
    11   * distributed under the License is distributed on an "AS IS" BASIS,
    12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13   * See the License for the specific language governing permissions and
    14   * limitations under the License.
    15   * ------------------------------------------------------------------------------
    16   */
    17  
    18  pub const NULL_BLOCK_IDENTIFIER: &str = "0000000000000000";
    19  
    20  pub mod block_manager;
    21  pub mod block_store;
    22  pub mod block_validator;
    23  pub mod block_wrapper;
    24  pub mod block_wrapper_ffi;
    25  mod candidate_block;
    26  pub mod chain;
    27  mod chain_commit_state;
    28  pub mod chain_ffi;
    29  pub mod chain_head_lock;
    30  pub mod chain_head_lock_ffi;
    31  pub mod incoming_batch_queue_ffi;
    32  pub mod publisher;
    33  pub mod publisher_ffi;
    34  mod validation_rule_enforcer;