From 57af18a0a035c919e20eeed02bebba5dbd15114a Mon Sep 17 00:00:00 2001
From: wangjj9219 <183318287@qq.com>
Date: Mon, 12 Apr 2021 23:47:22 +0800
Subject: [PATCH] update auction weight (#445)

---
 auction/src/default_weight.rs | 10 ----------
 auction/src/lib.rs            |  2 --
 2 files changed, 12 deletions(-)

diff --git a/auction/src/default_weight.rs b/auction/src/default_weight.rs
index 84a711a..26e552f 100644
--- a/auction/src/default_weight.rs
+++ b/auction/src/default_weight.rs
@@ -12,16 +12,6 @@ impl crate::WeightInfo for () {
 			.saturating_add(DbWeight::get().reads(12 as Weight))
 			.saturating_add(DbWeight::get().writes(12 as Weight))
 	}
-	fn bid_surplus_auction() -> Weight {
-		(257_830_000 as Weight)
-			.saturating_add(DbWeight::get().reads(6 as Weight))
-			.saturating_add(DbWeight::get().writes(5 as Weight))
-	}
-	fn bid_debit_auction() -> Weight {
-		(287_271_000 as Weight)
-			.saturating_add(DbWeight::get().reads(7 as Weight))
-			.saturating_add(DbWeight::get().writes(8 as Weight))
-	}
 	fn on_finalize(c: u32) -> Weight {
 		(50_992_000 as Weight)
 			.saturating_add((171_653_000 as Weight).saturating_mul(c as Weight))
diff --git a/auction/src/lib.rs b/auction/src/lib.rs
index 6587996..53b40f3 100644
--- a/auction/src/lib.rs
+++ b/auction/src/lib.rs
@@ -33,8 +33,6 @@ pub mod module {
 
 	pub trait WeightInfo {
 		fn bid_collateral_auction() -> Weight;
-		fn bid_surplus_auction() -> Weight;
-		fn bid_debit_auction() -> Weight;
 		fn on_finalize(c: u32) -> Weight;
 	}
 
-- 
GitLab