witness.cpp: Explicitly specify skip_flags
This commit is contained in:
parent
f29ca98b9e
commit
53e144ae6b
1 changed files with 3 additions and 1 deletions
|
|
@ -17,6 +17,7 @@
|
|||
*/
|
||||
#include <graphene/witness/witness.hpp>
|
||||
|
||||
#include <graphene/chain/database.hpp>
|
||||
#include <graphene/chain/witness_object.hpp>
|
||||
#include <graphene/time/time.hpp>
|
||||
|
||||
|
|
@ -176,7 +177,8 @@ void witness_plugin::block_production_loop()
|
|||
auto block = db.generate_block(
|
||||
scheduled_time,
|
||||
scheduled_witness,
|
||||
_private_keys[ scheduled_key ]
|
||||
_private_keys[ scheduled_key ],
|
||||
graphene::chain::database::skip_nothing
|
||||
);
|
||||
ilog("Generated block #${n} with timestamp ${t} at time ${c}",
|
||||
("n", block.block_num())("t", block.timestamp)("c", now));
|
||||
|
|
|
|||
Loading…
Reference in a new issue