Set Hive transaction expiration to 180 secs
This commit is contained in:
parent
daa0d6c06b
commit
958c814710
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue