Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce initial data request #4586

Merged
merged 30 commits into from
Oct 2, 2020
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2e50e4c
Add PersistableNetworkPayloadStore
chimp1984 Oct 1, 2020
240f0b9
Use PersistableNetworkPayloadStore as base class for stores which had…
chimp1984 Oct 1, 2020
431debe
Unrelated to PR topic fix: Only log warnings if banned object is not …
chimp1984 Oct 1, 2020
b90fd39
Unrelated to PR topic: Improve logs for windows: \n is not recognized…
chimp1984 Oct 1, 2020
7122ef0
Refactoring: Rename variables
chimp1984 Oct 1, 2020
df90b24
Add new methods and refactor APIs. Needed later for new classes....
chimp1984 Oct 1, 2020
9446f28
Split read store and get store so it can be reused from new class (fu…
chimp1984 Oct 1, 2020
384152f
Add version field to data requests classes
chimp1984 Oct 1, 2020
c79504c
Add getter (needed later)
chimp1984 Oct 1, 2020
3fb73ac
Add HistoricalDataStoreService
chimp1984 Oct 1, 2020
3df2f7e
Add HISTORY field. Make isNewVersion public
chimp1984 Oct 1, 2020
e44fdbd
Refactoring: Rename variable
chimp1984 Oct 1, 2020
62836d7
Add support for HistoricalDataStoreService
chimp1984 Oct 1, 2020
58efb62
Refactoring: Rearrange method (moved method)
chimp1984 Oct 1, 2020
65de106
Use HistoricalDataStoreService for TradeStatistics2StorageService
chimp1984 Oct 1, 2020
8ea6da0
Apply changes to test classes
chimp1984 Oct 1, 2020
6f5bfde
Deactivate usage of HistoricalDataStoreService for now.
chimp1984 Oct 1, 2020
a1debd8
Fix grammar
chimp1984 Oct 1, 2020
5027c86
Fix proto field index
chimp1984 Oct 1, 2020
3ee60d5
Add license
chimp1984 Oct 1, 2020
c308791
Add license
chimp1984 Oct 1, 2020
25a7979
Merge branch 'master_upstream' into reduce-initial-date-request
chimp1984 Oct 2, 2020
ef7f5a7
Revert nonce index at PreliminaryGetDataRequest protobuf entry to 21 …
chimp1984 Oct 2, 2020
d3384e6
Update p2p/src/main/java/bisq/network/p2p/storage/persistence/Histori…
chimp1984 Oct 2, 2020
9d51714
Update p2p/src/main/java/bisq/network/p2p/storage/persistence/Histori…
chimp1984 Oct 2, 2020
35d13fb
Make putIfAbsent method more clear
chimp1984 Oct 2, 2020
611bcef
Update p2p/src/main/java/bisq/network/p2p/storage/persistence/Histori…
chimp1984 Oct 2, 2020
e9c57b1
Update p2p/src/main/java/bisq/network/p2p/storage/P2PDataStorage.java
chimp1984 Oct 2, 2020
308aa16
Update p2p/src/main/java/bisq/network/p2p/storage/P2PDataStorage.java
chimp1984 Oct 2, 2020
807b9fc
Remove unused method, fix typo, remove unneeded annotations
chimp1984 Oct 2, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proto/src/main/proto/pb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ message BundleOfEnvelopes {
// get data

message PreliminaryGetDataRequest {
int32 nonce = 21;
int32 nonce = 1;
repeated bytes excluded_keys = 2;
repeated int32 supported_capabilities = 3;
string version = 4;
Expand Down