diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-05-14 22:25:26 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-08-18 23:25:46 +0200 |
commit | fa8d14018891d90e23fce0e510a01728970932f2 (patch) | |
tree | 723d8d126c87f974598fd865c22c516ea14bd699 /tests | |
parent | c820b10adddc7a229cf2de99937d05a5715d2ab0 (diff) |
Implement node load/fetch order
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/main.cpp b/tests/main.cpp index 0174384..07e7131 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -193,7 +193,7 @@ int main() database.addUser(databaseNode, *adminUserKey, localUserKeyPair.getPublicKey(), databaseCreateResponse->getNodeAdminGroupId()->getView()); database.addData(databaseNode, localUserKeyPair, DataView{ (void*)"hello, aaald!", 13 }); - database.seed(databaseNode); + database.seed(databaseNode, DatabaseFetchOrder::NEWEST_FIRST); this_thread::sleep_for(chrono::seconds(3)); assertEquals(1, createNodeCounter); @@ -210,7 +210,7 @@ int main() Database database("bootstrap.ring.cx", 4222, storagePath, callbackFuncs); database.loadNode(*databaseNode.getRequestHash()); - database.seed(databaseNode); + database.seed(databaseNode, DatabaseFetchOrder::NEWEST_FIRST); this_thread::sleep_for(chrono::seconds(3)); assertEquals(1, createNodeCounter); |