diff --git a/agent/structs.py b/agent/structs.py index e53d116..408374b 100644 --- a/agent/structs.py +++ b/agent/structs.py @@ -53,8 +53,8 @@ class TariffStruct(BaseStruct): def __init__(self, tariff_id=0, speedIn=None, speedOut=None): self.tid = tariff_id - self.speedIn = float(speedIn or 0.0625) - self.speedOut = float(speedOut or 0.0625) + self.speedIn = float(speedIn or 5.0625) + self.speedOut = float(speedOut or 5.0625) def serialize(self): dt = pack("!Iff", int(self.tid), float(self.speedIn), float(self.speedOut))