Set Hive transaction expiration to 180 secs

This commit is contained in:
serkixenos 2021-10-31 04:36:28 +01:00
parent daa0d6c06b
commit 958c814710

View file

@ -568,7 +568,7 @@ void sidechain_net_handler_hive::process_primary_wallet() {
hive::signed_transaction htrx;
htrx.set_reference_block(head_block_id);
htrx.set_expiration(head_block_time + fc::seconds(90));
htrx.set_expiration(head_block_time + fc::seconds(180));
htrx.operations.push_back(auo);
@ -726,7 +726,7 @@ bool sidechain_net_handler_hive::process_withdrawal(const son_wallet_withdraw_ob
hive::signed_transaction htrx;
htrx.set_reference_block(head_block_id);
htrx.set_expiration(head_block_time + fc::seconds(90));
htrx.set_expiration(head_block_time + fc::seconds(180));
htrx.operations.push_back(t_op);