Increase max depth for trx confirmation callback
This commit is contained in:
parent
a49f8bf47c
commit
94f9c5f3eb
1 changed files with 4 additions and 1 deletions
|
|
@ -160,7 +160,10 @@ namespace graphene { namespace app {
|
|||
{
|
||||
auto block_num = b.block_num();
|
||||
auto& callback = _callbacks.find(id)->second;
|
||||
fc::async( [capture_this,this,id,block_num,trx_num,trx,callback](){ callback( fc::variant(transaction_confirmation{ id, block_num, trx_num, trx}, 5) ); } );
|
||||
fc::async( [capture_this,this,id,block_num,trx_num,trx,callback]() {
|
||||
callback( fc::variant( transaction_confirmation{ id, block_num, trx_num, trx },
|
||||
GRAPHENE_MAX_NESTED_OBJECTS ) );
|
||||
} );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue