Skip to content

Commit

Permalink
chaincheck: Fix reading faulty field
Browse files Browse the repository at this point in the history
  • Loading branch information
pmerkleplant committed Aug 29, 2023
1 parent 019dc4b commit 05cd0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/chaincheck/ISelfKisserChaincheck.sol
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ contract ISelfKisserChaincheck is Chaincheck {
}

function check_dead() internal {
bool wantDead = config.readBool(".SelfKisser.dead");
bool wantDead = config.readBool(".ISelfKisser.dead");
bool gotDead = self.dead();

if (wantDead != gotDead) {
Expand Down

0 comments on commit 05cd0f0

Please sign in to comment.