File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ int CQuorum::GetMemberIndex(const uint256& proTxHash) const
101
101
return -1 ;
102
102
}
103
103
104
- bool CQuorum::WriteContributions (CEvoDB& evoDb)
104
+ void CQuorum::WriteContributions (CEvoDB& evoDb)
105
105
{
106
106
uint256 dbKey = MakeQuorumKey (*this );
107
107
@@ -111,7 +111,6 @@ bool CQuorum::WriteContributions(CEvoDB& evoDb)
111
111
if (skShare.IsValid ()) {
112
112
evoDb.GetRawDB ().Write (std::make_pair (DB_QUORUM_SK_SHARE, dbKey), skShare);
113
113
}
114
- return true ;
115
114
}
116
115
117
116
bool CQuorum::ReadContributions (CEvoDB& evoDb)
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class CQuorum
63
63
CBLSSecretKey GetSkShare () const ;
64
64
65
65
private:
66
- bool WriteContributions (CEvoDB& evoDb);
66
+ void WriteContributions (CEvoDB& evoDb);
67
67
bool ReadContributions (CEvoDB& evoDb);
68
68
static void StartCachePopulatorThread (std::shared_ptr<CQuorum> _this);
69
69
};
You can’t perform that action at this time.
0 commit comments