Register mock tokens in json database

Allows all steps of the aave:dev task to run successfully
This commit is contained in:
Pablo Gamito 2020-12-19 19:36:40 +01:00
parent eea6d38f24
commit 94293a42db

View File

@ -387,6 +387,7 @@ export const deployAllMockTokens = async (verify?: boolean) => {
[tokenSymbol, tokenSymbol, configData ? configData.reserveDecimals : decimals],
verify
);
await registerContractInJsonDb(tokenSymbol.toUpperCase(), tokens[tokenSymbol]);
}
return tokens;
};