-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
Former-commit-id: 9ab47fd365beadb06c96f34efd351620d62278a7 [formerly 724ea098c74b5efca28918a86f77b5afc193ac41] Former-commit-id: b84dc545b0c7a6ee0532c841f416d72639963b36
- Loading branch information
Showing
48 changed files
with
822 additions
and
13 deletions.
There are no files selected for viewing
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
data/bitcoin/cbeci-mining_map-bitcoin-mining/cbeci-mining_map.csv
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
data/network-stats/wonderproxy-ping/latency_matrix_with_names.csv
Git LFS file not shown
Binary file not shown.
1 change: 0 additions & 1 deletion
1
data/network-stats/wonderproxy-ping/pings-2020-07-19-2020-07-20.7z.REMOVED.git-id
This file was deleted.
Oops, something went wrong.
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/main/java/jabs/consensus/algorithm/QueryingBasedConsensus.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package jabs.consensus.algorithm; | ||
|
||
import jabs.ledgerdata.Block; | ||
import jabs.ledgerdata.Tx; | ||
import jabs.ledgerdata.Query; | ||
|
||
public interface QueryingBasedConsensus <B extends Block<B>, T extends Tx<T>> extends ConsensusAlgorithm<B, T>{ | ||
void newIncomingQuery(Query query); | ||
} |
Oops, something went wrong.