Make CLI wallet return 0 when exiting normally
This commit is contained in:
parent
d193e7701d
commit
c80e0c09ba
1 changed files with 2 additions and 1 deletions
|
|
@ -219,6 +219,7 @@ int main( int argc, char** argv )
|
|||
catch ( const fc::exception& e )
|
||||
{
|
||||
std::cout << e.to_detail_string() << "\n";
|
||||
return -1;
|
||||
}
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue