Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 790 Bytes

CHANGELOG.md

File metadata and controls

32 lines (20 loc) · 790 Bytes

Changelog

0.0.4

This PR fixed incorrect state mutability identification for the various structures, such as:

const state mutability for the state variable declaration

contract Example {
    uint256 constant x = 1;
}

payable state mutability for the function return parameter variable declaration

function test() public returns(address payable) {}

Now, these cases are handled correctly after the bug in the version 0.0.3.

  • Use ruff for the py files check and formatting.
  • Added a ruff_helper.sh script