Rename add_active_tributary for clarity

This commit is contained in:
Luke Parker
2023-10-14 21:53:38 -04:00
parent 19e90b28b0
commit 7409d0b3cf
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ impl<D: Db> MainDb<D> {
(bytes, tributaries)
}
pub fn add_active_tributary(txn: &mut D::Transaction<'_>, spec: &TributarySpec) {
pub fn add_participating_in_tributary(txn: &mut D::Transaction<'_>, spec: &TributarySpec) {
txn.put(Self::in_tributary_key(spec.set()), []);
let key = Self::active_tributaries_key();