Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
// 区块链
8
pub struct BlockChain {
9
pub blocks: Vec<Block>,
10
pub curr_bits: u32,
11
}
12
13
impl BlockChain {
14
pub fn new() -> Self {
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected