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

Bump dependencies and version to v1.0.3 #809

Merged
merged 1 commit into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ HunterGate(
LOCAL
)

project(koinos_chain VERSION 1.0.2 LANGUAGES CXX C)
project(koinos_chain VERSION 1.0.3 LANGUAGES CXX C)
add_compile_definitions(KOINOS_MAJOR_VERSION=${PROJECT_VERSION_MAJOR})
add_compile_definitions(KOINOS_MINOR_VERSION=${PROJECT_VERSION_MINOR})
add_compile_definitions(KOINOS_PATCH_VERSION=${PROJECT_VERSION_PATCH})
Expand Down
2 changes: 0 additions & 2 deletions libraries/chain/include/koinos/chain/state.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

namespace koinos::chain {

bool operator<( const object_space& lhs, const object_space& rhs );

namespace state {

namespace zone {
Expand Down
23 changes: 0 additions & 23 deletions libraries/chain/state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,6 @@

namespace koinos::chain {

bool operator<( const object_space& lhs, const object_space& rhs )
{
if ( lhs.system() < rhs.system() )
{
return true;
}
else if ( lhs.system() > rhs.system() )
{
return false;
}

if ( lhs.zone() < rhs.zone() )
{
return true;
}
else if ( lhs.system() > rhs.system() )
{
return false;
}

return lhs.id() < rhs.id();
}

namespace state {

namespace space {
Expand Down
2 changes: 1 addition & 1 deletion libraries/mq
2 changes: 1 addition & 1 deletion libraries/proto
Submodule proto updated 136 files