Skip to content

Commit b728d68

Browse files
committed
Merge branch 'master' into 2025_blocknum
2 parents bf3608b + 3d5894c commit b728d68

File tree

6 files changed

+1365
-598
lines changed

6 files changed

+1365
-598
lines changed

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,3 @@ us-nodes.mainnet.beam.mw:8100
6262
### BUILD FROM SOURCE
6363

6464
[Building Instructions](https://github.com/BeamMW/beam/wiki/How-to-build)
65-
66-
If you build from source please use 'mainnet' branch for Mainnet
67-
68-
69-

beam/cli.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ int main(int argc, char* argv[])
296296
catch (const po::error& e)
297297
{
298298
cout << e.what() << std::endl;
299-
printHelp(visibleOptions);
300299

301300
return 0;
302301
}
@@ -679,7 +678,6 @@ int main(int argc, char* argv[])
679678
catch (const po::error& e)
680679
{
681680
BEAM_LOG_ERROR() << e.what();
682-
printHelp(visibleOptions);
683681
}
684682
catch (const std::runtime_error& e)
685683
{

bvm/Shaders/Explorer/Parser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2874,7 +2874,7 @@ void ParserContext::OnMethod_DaoVote(uint32_t /* iVer */)
28742874
{
28752875
auto pArg = get_ArgsAs<DaoVote::Method::MoveFunds>();
28762876
if (pArg)
2877-
OnMethod(pArg->m_Lock ? "Funs Lock" : "Funds Unlock");
2877+
OnMethod(pArg->m_Lock ? "Funds Lock" : "Funds Unlock");
28782878
}
28792879
break;
28802880

explorer/explorer_node.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,7 @@ bool parse_cmdline(int argc, char* argv[], Options& o, Rules& r) {
228228
}
229229
catch (const po::error& ex)
230230
{
231-
cout << ex.what();
232-
cout << cliOptions << std::endl;
231+
cout << ex.what() << std::endl;
233232
}
234233
catch (const exception& ex)
235234
{
@@ -262,4 +261,4 @@ void setup_node(Node& node, const Options& o) {
262261
node.m_Cfg.m_ProcessorParams.m_RichInfoFlags |= NodeProcessor::StartParams::RichInfo::UpdShader;
263262
node.m_Cfg.m_ProcessorParams.m_RichParser = o.m_RichParser;
264263
}
265-
}
264+
}

0 commit comments

Comments
 (0)