Add blocks to both chains simultaneously. The Simple Chain links blocks using a short arithmetic formula. The Actual Chain uses real SHA-256 cryptographic hashes, the same method used in Bitcoin. Try tampering with a block to see how it breaks the chain. Once tampered, no new blocks can be added, just like in a real network, where peers reject a broken chain.
link = (prev_link × 31 + amount) mod 100,000SHA-256(index + amount + prevHash + nonce). The hash is a 256-bit fingerprint; any change to any field produces a completely different hash, breaking the link to the next block.