Skip to content

Commit

Permalink
revert back to regular axelarexecutable
Browse files Browse the repository at this point in the history
  • Loading branch information
rbajollari committed Oct 15, 2024
1 parent 0b9665e commit 3fabe92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/Ojo.sol
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@axelar-network/axelar-gmp-sdk-solidity/contracts/express/AxelarExpressExecutable.sol";
import "@axelar-network/axelar-gmp-sdk-solidity/contracts/executable/AxelarExecutable.sol";
import "@axelar-network/axelar-gmp-sdk-solidity/contracts/interfaces/IAxelarGateway.sol";
import "@axelar-network/axelar-gmp-sdk-solidity/contracts/interfaces/IAxelarGasService.sol";
import "@axelar-network/axelar-gmp-sdk-solidity/contracts/interfaces/IERC20.sol";
import "@axelar-network/axelar-gmp-sdk-solidity/contracts/upgradable/Upgradable.sol";
import "./IOjo.sol";
import "./OjoTypes.sol";

contract Ojo is IOjo, AxelarExpressExecutable, Upgradable {
contract Ojo is IOjo, AxelarExecutable, Upgradable {
IAxelarGasService public immutable gasReceiver;

string public ojoChain;
Expand All @@ -24,7 +24,7 @@ contract Ojo is IOjo, AxelarExpressExecutable, Upgradable {

error AlreadyInitialized();

constructor(address gateway_, address gasReceiver_) AxelarExpressExecutable(gateway_) {
constructor(address gateway_, address gasReceiver_) AxelarExecutable(gateway_) {
gasReceiver = IAxelarGasService(gasReceiver_);
}

Expand Down

0 comments on commit 3fabe92

Please sign in to comment.