transaction.cpp: Make depth parameter uint32_t, silence compiler warning

This commit is contained in:
theoreticalbts 2015-07-22 17:06:48 -04:00
parent 83c8b4c5f9
commit 44e7a8cb46

View file

@ -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;