Skip to content

Commit

Permalink
Fix (#136)
Browse files Browse the repository at this point in the history
* add private

* add private
  • Loading branch information
hujw77 authored Mar 12, 2024
1 parent d456a45 commit cdc9d5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/user/Application.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ abstract contract Application is AppBase {
}

function ormpRecver() public view virtual override returns (address) {
return ORMP;
return _ORMP;
}

function _setAppConfig(address oracle, address relayer) internal virtual {
Expand Down
4 changes: 2 additions & 2 deletions src/user/UpgradeableApplication.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import "../interfaces/IORMP.sol";
import "./AppBase.sol";

abstract contract UpgradeableApplication is AppBase {
address private sender;
address private recver;
address private _sender;
address private _recver;

event SetSender(address ormp);
event SetRecver(address ormp);
Expand Down

0 comments on commit cdc9d5c

Please sign in to comment.