Skip to content

Issue with payable address array #110

@maxsam4

Description

@maxsam4

address payable[] is getting prettified to address[]
For example,

pragma solidity ^0.5.0;

contract test {
    address payable[] yo;
    function hello(address payable[] memory _yo) public {
        yo = _yo;
        yo[0].transfer(1337);
    }
}

Got prettified to

pragma solidity ^0.5.0;

contract test {
    address[] yo;
    function hello(address[] memory _yo) public {
        yo = _yo;
        yo[0].transfer(1337);
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions