Skip to content

Commit

Permalink
remove deployer parameter in constructor (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
webelf101 authored Aug 19, 2024
1 parent eed58e3 commit bca43d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Compass.vy
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ FEE_MANAGER: public(immutable(address))
# compass_id: unique identifier for compass instance
# valset: initial validator set
@external
def __init__(_compass_id: bytes32, _event_id: uint256, _gravity_nonce:uint256, valset: Valset, fee_manager: address, _deployer_contract: address):
def __init__(_compass_id: bytes32, _event_id: uint256, _gravity_nonce:uint256, valset: Valset, fee_manager: address):
compass_id = _compass_id
cumulative_power: uint256 = 0
i: uint256 = 0
Expand Down

0 comments on commit bca43d8

Please sign in to comment.