Move get/set points used to middleware

This commit is contained in:
Brandon Fish
2019-06-02 13:21:00 -05:00
parent e533a8a7b5
commit c020c39193
2 changed files with 17 additions and 16 deletions

View File

@ -350,16 +350,6 @@ impl Ctx {
pub fn dynamic_sigindice_count(&self) -> usize {
unsafe { (*self.local_backing).dynamic_sigindices.len() }
}
/// Returns the number of points used by a function call for metering
pub fn get_points_used(&self) -> u64 {
unimplemented!()
}
/// Sets the value of points used
pub fn set_points_used(&mut self, _value: u64) {
unimplemented!()
}
}
#[doc(hidden)]