Shop 출금 (transferTreasury)

    function transferTreasury(address to) external onlyOwner nonReentrant {
        ...

        emit TransferTreasury(to, prevBalance);
    }

  • Parameter

TypeValueDescription

address

to

  • 출금한 금액 전달할 Account 주소

  • Errors

MessageCause

FandomShop: Address should not be zero address

  • to로 전달한 Address가 유효하지않음

FandomShop: Payment token transfer failed

  • 출금이 정상적으로 이루어지지 않음.

Last updated