Jae Kwon c5f008d60f | 8 years ago | |
---|---|---|
.. | ||
README.md | 8 years ago | |
dummy.go | 8 years ago | |
dummy_test.go | 8 years ago | |
log.go | 8 years ago | |
persistent_dummy.go | 8 years ago |
There are two app's here: the DummyApplication and the PersistentDummyApplication.
The DummyApplication is a simple merkle key-value store.
Transactions of the form key=value
are stored as key-value pairs in the tree.
Transactions without an =
sign set the value to the key.
The app has no replay protection (other than what the mempool provides).
The PersistentDummyApplication wraps the DummyApplication and provides two additional features:
The state is persisted in leveldb along with the last block committed, and the Handshake allows any necessary blocks to be replayed. Validator set changes are effected using the following transaction format:
val:pubkey1/power1,addr2/power2,addr3/power3"
where power1
is the new voting power for the validator with pubkey1
(possibly a new one).
There is no sybil protection against new validators joining.
Validators can be removed by setting their power to 0
.