aboutsummaryrefslogtreecommitdiffstats
path: root/core/nonblocking_test.go
Commit message (Collapse)AuthorAgeFilesLines
* core: fix block confirmed is not called when Debug is not implemented. (#208)Mission Liao2018-10-161-0/+53
|
* core: modify interface (#194)Mission Liao2018-10-121-4/+4
| | | | * Add a new method to notify full node about round cutting. * Modify interface to return error when preparing block
* core: change interface (#193)Mission Liao2018-10-111-7/+8
| | | | | | | * Extract types.FinalizationResult * Change interface: - Application.BlockConfirmed returns whole block. - Application.BlockDelivered returns partial result.
* core: Check Witness height. Add ConsensusTime and ConsensusHeight to block. ↵Jimmy Hu2018-10-041-2/+6
| | | | (#170)
* core: update data model to reflect new model (#157)Wei-Ning Huang2018-10-011-18/+3
| | | | | | Update data model: 1) Remove witness ack. 2) Add round to block. 3) Update governance interface.
* Fix naming of methods (#134)Mission Liao2018-09-251-25/+25
| | | | | | - BlockDeliver -> BlockDelivered - TotalOrderingDeliver -> TotalOrderingDelivered - WitnessAckDeliver -> WitnessAckDelivered - VerifyPayload -> VerifyPayloads
* core: add debug (#133)Mission Liao2018-09-251-0/+133
* Split interface * Rename nonblocking-application to nonblocking Parts needs nonblocking gets more. * Implement core.nonBlocking based on interface split * Fix: the witness parent hash could be parent on compaction chain. * Rename Application.DeliverBlock to BlockDeliver To sync with naming of other methods. * Change methods' fingerprint - BlockConfirmed provides block hash only. - BlockDeliver provde a whole block.