Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
owl11 committed Aug 13, 2023
1 parent 3ff7142 commit 6234878
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/L1ArtStakes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ contract ArtStakes_Staker {
_NFTAddr.safeTransferFrom(msg.sender, address(this), _tokenId);
}

function BurnerunStakeNFT() public {
function BurnerUNStakeNFT() public {
(uint256 _tokenId, ERC721 _NFTAddr, address _owner) = getUnstakerMetada(
msg.sender
);
Expand Down
4 changes: 2 additions & 2 deletions test/L1ArtStakes.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ contract StakerFactoryTest is Test {
ReceivedMessage
{
vm.prank(address(0x99));
staker.unStakeNFT();
staker.BurnerUNStakeNFT();
}

function testunstakeType2()
Expand All @@ -130,7 +130,7 @@ contract StakerFactoryTest is Test {
ReceivedMessage
{
vm.prank(address(0x99));
staker.unStakeNFT();
staker.BurnerUNStakeNFT();
}

function encodeBurnerMetadata(
Expand Down

0 comments on commit 6234878

Please sign in to comment.