Skip to content

Commit

Permalink
pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Mart committed Aug 16, 2023
1 parent 1a9ef12 commit d6309bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions libraries/psibase/common/include/psibase/version.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once

#define PSINODE_VERSION_MAJOR 0
#define PSINODE_VERSION_MINOR 1
#define PSINODE_VERSION_PATCH 6
#define PSIBASE_VERSION_MAJOR 0
#define PSIBASE_VERSION_MINOR 1
#define PSIBASE_VERSION_PATCH 6
4 changes: 2 additions & 2 deletions programs/psinode/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2181,8 +2181,8 @@ int main(int argc, char* argv[])

if (version)
{
std::cerr << "psinode " << PSINODE_VERSION_MAJOR << "." << PSINODE_VERSION_MINOR << "."
<< PSINODE_VERSION_PATCH << "\n";
std::cerr << "psinode " << PSIBASE_VERSION_MAJOR << "." << PSIBASE_VERSION_MINOR << "."
<< PSIBASE_VERSION_PATCH << "\n";
return 1;
}

Expand Down
4 changes: 2 additions & 2 deletions programs/psitest/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1092,8 +1092,8 @@ int main(int argc, char* argv[])
error = true;
if (show_version)
{
std::cerr << "psitest " << PSINODE_VERSION_MAJOR << "." << PSINODE_VERSION_MINOR << "."
<< PSINODE_VERSION_PATCH << "\n";
std::cerr << "psitest " << PSIBASE_VERSION_MAJOR << "." << PSIBASE_VERSION_MINOR << "."
<< PSIBASE_VERSION_PATCH << "\n";
return 0;
}
if (show_usage || error)
Expand Down

0 comments on commit d6309bc

Please sign in to comment.