mirror of
https://github.com/Instadapp/dsa-resolvers-deprecated.git
synced 2024-07-29 22:38:16 +00:00
feat: 🎸 return default data
This commit is contained in:
parent
14dd664e72
commit
ae77f88111
|
|
@ -213,11 +213,14 @@ contract Resolver is Helpers {
|
||||||
|
|
||||||
function getPosition(address owner, address[] memory crAddress)
|
function getPosition(address owner, address[] memory crAddress)
|
||||||
public
|
public
|
||||||
returns (CreamData[] memory)
|
returns (
|
||||||
// CompReadInterface.CompBalanceMetadataExt memory
|
CreamData[] memory,
|
||||||
|
CompReadInterface.CompBalanceMetadataExt memory
|
||||||
|
)
|
||||||
{
|
{
|
||||||
return (
|
return (
|
||||||
getCreamData(owner, crAddress)
|
getCreamData(owner, crAddress),
|
||||||
|
CompReadInterface.CompBalanceMetadataExt(0, 0, address(0), 0)
|
||||||
// CompReadInterface(getCreamReadAddress()).getCompBalanceMetadataExt(
|
// CompReadInterface(getCreamReadAddress()).getCompBalanceMetadataExt(
|
||||||
// getCreamToken(),
|
// getCreamToken(),
|
||||||
// getComptroller(),
|
// getComptroller(),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user