Add missing unittest module to erc20 package

This commit is contained in:
lash
2023-05-30 17:38:56 +01:00
parent 4f2d47778c
commit d1e5b84cfb
7 changed files with 13 additions and 3 deletions

View File

@@ -45,7 +45,9 @@ class GiftableToken(ERC20):
enc.string(symbol)
enc.uint256(decimals)
enc.uint256(expire)
code += enc.get()
args = enc.get()
code += args
logg.debug('constructor code: ' + args)
return code