Update hardfork date for TESTNET, sync fc module and update logs
This commit is contained in:
parent
9746e74885
commit
a4d399d6cc
3 changed files with 6 additions and 4 deletions
2
.gitmodules
vendored
2
.gitmodules
vendored
|
|
@ -5,5 +5,5 @@
|
|||
[submodule "libraries/fc"]
|
||||
path = libraries/fc
|
||||
url = https://github.com/peerplays-network/peerplays-fc.git
|
||||
branch = latest-fc
|
||||
branch = beatrice
|
||||
ignore = dirty
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// GPOS HARDFORK Thursday, October 1, 2020 05:00:00 AM GMT
|
||||
// GPOS HARDFORK Monday, Dec 23, 2019 04:00:00 AM GMT
|
||||
#ifndef HARDFORK_GPOS_TIME
|
||||
#define HARDFORK_GPOS_TIME (fc::time_point_sec( 1601528400 ))
|
||||
#define HARDFORK_GPOS_TIME (fc::time_point_sec( 1577073600 ))
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -43,7 +43,9 @@ bool proposal_object::is_authorized_to_execute(database& db) const
|
|||
}
|
||||
catch ( const fc::exception& e )
|
||||
{
|
||||
elog( "caught exception ${e} while checking authorization of proposal operations",("e", e.to_detail_string()) );
|
||||
#ifndef NDEBUG
|
||||
wlog( "caught exception ${e} while checking authorization of proposal operations",("e", e.to_detail_string()) );
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue