-
- Downloads
[fix] Tx: pass `time` as optional parameter at the end of the line
- Broken transaction generation - https://forum.duniter.org/t/silkaj-0-7-erreur-tx/6161
Loading
- Broken transaction generation - https://forum.duniter.org/t/silkaj-0-7-erreur-tx/6161
There is a type hint error here, time: int = None
should be time: int = 0
or time: Optional[int] = None
. To indicate that the int can be None, Optional is required.