improving on split payment handling

This commit is contained in:
dni ⚡
2022-10-21 17:35:58 +02:00
parent 9de38f908b
commit 2d61a8854f
2 changed files with 24 additions and 50 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ class Target(BaseModel):
class TargetPutList(BaseModel):
wallet: str = Query(...)
alias: str = Query("")
percent: float = Query(..., ge=0.01)
percent: float = Query(..., ge=0.01, lt=100)
class TargetPut(BaseModel):