| 59 | } |
| 60 | |
| 61 | type config struct { |
| 62 | store protocol.Store |
| 63 | initialState *state.Snapshot |
| 64 | pubkeys []ed25519.PublicKey |
| 65 | privkeys []ed25519.PrivateKey |
| 66 | quorum int |
| 67 | } |
| 68 | |
| 69 | // NewChain makes a new Chain. By default it uses a memstore for |
| 70 | // storage and creates an initial block using a 0/0 multisig program. |
nothing calls this directly
no outgoing calls
no test coverage detected