Skip to content

Commit

Permalink
Rename (and move file) IDecentAutonomousAdmin to IDecentVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Nov 1, 2024
1 parent 4fc1b38 commit 70d0732
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.28;

interface IDecentAutonomousAdmin {
interface IDecentVersion {
function version() external view returns (uint32);
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;

import {IDecentAutonomousAdmin} from "./IDecentAutonomousAdmin.sol";
import {IDecentVersion} from "../IDecentVersion.sol";
import {IHats} from "../hats/IHats.sol";

interface IDecentAutonomousAdminV1 is IDecentAutonomousAdmin {
interface IDecentAutonomousAdminV1 is IDecentVersion {
error NotCurrentWearer();

struct TriggerStartArgs {
Expand Down

0 comments on commit 70d0732

Please sign in to comment.