raiden-contracts
raiden-contracts copied to clipboard
Make contracts_version mandatory?
In many functions, the argument contracts_version
is optional (and it defaults to None
). However, it's dangerous when people forget putting contracts_version
. The call might succeed and people would be talking to a completely different contract instance, etc.
This issue considers making contracts_version
mandatory everywhere.