Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Oct 31, 2023
1 parent 485e3c6 commit 206a2e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/root/staking/CustomSupernetManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ contract CustomSupernetManager is ICustomSupernetManager, Ownable2StepUpgradeabl

// we need to track EOAs as well in the genesis set, in order to be able to query genesisBalances mapping
_genesis.insert(msg.sender, 0);
genesisBalances[msg.sender] = amount;
genesisBalances[msg.sender] += amount;

// lock native tokens on the root erc20 predicate
nativeTokenRoot.safeTransferFrom(msg.sender, address(_rootERC20Predicate), amount);
Expand Down

0 comments on commit 206a2e5

Please sign in to comment.