Skip to content

Commit

Permalink
Remove migrate & update metadata (#1602)
Browse files Browse the repository at this point in the history
  • Loading branch information
boundless-forest authored Oct 9, 2024
1 parent e9c5fad commit 1ac5283
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 30 deletions.
28 changes: 1 addition & 27 deletions precompile/metadata/abi/deposit.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,27 +65,6 @@
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs":
[
{
"internalType": "address",
"name": "who",
"type": "address"
}
],
"name": "migrate",
"outputs":
[
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc":
Expand Down Expand Up @@ -125,10 +104,6 @@
{
"_0": "returns true on success, false otherwise."
}
},
"migrate(address)":
{
"details": "Migrate data to deposit contract"
}
},
"title": "Deposit",
Expand All @@ -138,8 +113,7 @@
{
"claim()": "4e71d92d",
"claim_with_penalty(uint8)": "fa04a9bf",
"lock(uint256,uint8)": "998e4242",
"migrate(address)": "ce5494bb"
"lock(uint256,uint8)": "998e4242"
}
}
},
Expand Down
3 changes: 0 additions & 3 deletions precompile/metadata/sol/deposit.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,4 @@ interface Deposit {
/// @param depositId The deposit ticket wish to claim
/// @return returns true on success, false otherwise.
function claim_with_penalty(uint8 depositId) external returns (bool);

/// @dev Migrate data to deposit contract
function migrate(address who) external returns (bool);
}

0 comments on commit 1ac5283

Please sign in to comment.