MCPcopy Create free account
hub / github.com/QMHTMY/RustBook / BlockChain

Class BlockChain

code/chapter09/blockchain/blockchain2/core/src/blockchain.rs:8–11  ·  view source on GitHub ↗

区块链

Source from the content-addressed store, hash-verified

6
7// 区块链
8pub struct BlockChain {
9 pub blocks: Vec<Block>,
10 pub curr_bits: u32,
11}
12
13impl BlockChain {
14 pub fn new() -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected