| 4 | const PRE_HASH: &str = "22caaf24ef0aea3522c13d133912d2b722caaf24ef0aea3522c13d133912d2b7"; |
| 5 | |
| 6 | pub struct BlockChain { |
| 7 | pub blocks: Vec<Block>, |
| 8 | } |
| 9 | |
| 10 | impl BlockChain { |
| 11 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected