Closed gislik closed 6 years ago
I’m considering adding transfer(address, uint, bytes) from ERC223 as it may become a widely adopted standard in the future and it does not harm to have it in our contracts as an alias for transferAndCall(address, uint, bytes).
transfer(address, uint, bytes)
transferAndCall(address, uint, bytes)
Truffle does not support overloading of contract methods.
https://github.com/trufflesuite/truffle/issues/569
Postponing ERC223 as we may be able to add it later.
I’m considering adding
transfer(address, uint, bytes)
from ERC223 as it may become a widely adopted standard in the future and it does not harm to have it in our contracts as an alias fortransferAndCall(address, uint, bytes)
.