is_contract.sol 225 B

12345678
  1. import "polkadot";
  2. // Partial mock of the ink! "mother" integration test.
  3. contract IsContractOracle {
  4. function contract_oracle(address _address) public view returns (bool) {
  5. return is_contract(_address);
  6. }
  7. }