Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
justfortest2 committed May 23, 2020
1 parent ad0fd9d commit 415f017
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions plugins/ibc_plugin/ibc_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4052,7 +4052,9 @@ namespace eosio { namespace ibc {
}
if ( times <= 3 ){
ilog("---------orig_trxs_to_push to push size ${n}, retry times ${try}",("n",to_push.size())("try",times));
token_contract->push_cash_trxs( to_push, range.second + 1 );
try {
token_contract->push_cash_trxs( to_push, range.second + 1 );
} FC_LOG_AND_DROP()
}
}

Expand Down Expand Up @@ -4090,7 +4092,9 @@ namespace eosio { namespace ibc {
to_push = cash_trxs_to_push;
}
ilog("---------cash_trxs_to_push to push size ${n}",("n",to_push.size()));
token_contract->push_cashconfirm_trxs( to_push, last_cash_seq_num + 1 );
try {
token_contract->push_cashconfirm_trxs( to_push, last_cash_seq_num + 1 );
} FC_LOG_AND_DROP()
return;
}

Expand Down

0 comments on commit 415f017

Please sign in to comment.