transaction.cpp: Make depth parameter uint32_t, silence compiler warning
This commit is contained in:
parent
83c8b4c5f9
commit
44e7a8cb46
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ struct sign_state
|
|||
* Checks to see if we have signatures of the active authorites of
|
||||
* the accounts specified in authority or the keys specified.
|
||||
*/
|
||||
bool check_authority( const authority* au, int depth = 0 )
|
||||
bool check_authority( const authority* au, uint32_t depth = 0 )
|
||||
{
|
||||
if( au == nullptr ) return false;
|
||||
const authority& auth = *au;
|
||||
|
|
|
|||
Loading…
Reference in a new issue