diff --git a/src/wait.jl b/src/wait.jl
index abffc4dcf345e7499f9757dc952fea07118040d6..7cc03371629b3ddb8b7454fcb0b130aa5e837676 100644
--- a/src/wait.jl
+++ b/src/wait.jl
@@ -1,8 +1,8 @@
 module Wait
-import JuMP: Model, @constraint, @variable, VariableRef, owner_model, value
+import JuMP: @constraint, @variable, VariableRef, value
 import ..Variables: VariableType, variables, duration, get_free_variable
 import ..BuildingBlocks: BuildingBlock, to_block
-import ..BuildSequences: @global_model_constructor
+import ..BuildSequences: global_model
 import ...Scanners: Scanner
 
 """
@@ -17,20 +17,16 @@ Duration can be set to one of:
 - `nothing` to make it fully determined by external constraints and objectives
 """
 struct WaitBlock <: BuildingBlock
-    model :: Model
     duration :: VariableType
-    function WaitBlock(model::Model, duration=nothing)
+    function WaitBlock(duration=nothing)
         res = new(
-            model, 
-            get_free_variable(model, duration),
+            get_free_variable(duration),
         )
         @constraint model res.duration >= 0
         return res
     end
 end
 
-@global_model_constructor WaitBlock
-
 """
     to_block(JuMP variable/:min or :max/nothing/number)