From 44e7a8cb4601f9b9fabeb6e3629ae1cf44e8e8c9 Mon Sep 17 00:00:00 2001 From: theoreticalbts Date: Wed, 22 Jul 2015 17:06:48 -0400 Subject: [PATCH] transaction.cpp: Make depth parameter uint32_t, silence compiler warning --- libraries/chain/protocol/transaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/chain/protocol/transaction.cpp b/libraries/chain/protocol/transaction.cpp index 49854a1e..21fd9c8e 100644 --- a/libraries/chain/protocol/transaction.cpp +++ b/libraries/chain/protocol/transaction.cpp @@ -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;