mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-04 06:13:09 +00:00
13 lines
276 B
Solidity
13 lines
276 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.28;
|
|
|
|
import "./Marketplace.sol";
|
|
|
|
// exposes internal functions of Marketplace for testing
|
|
contract TestMarketplaceUpgraded is Marketplace {
|
|
|
|
function newShinyMethod() public pure returns (uint256) {
|
|
return 42;
|
|
}
|
|
}
|