Skip to content

Commit

Permalink
Bump version and name + linter
Browse files Browse the repository at this point in the history
  • Loading branch information
k06a committed Dec 20, 2022
1 parent 5e28319 commit 3b1b7f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contracts/TokenPodsLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ library TokenPodsLib {

function makeInfo(Data storage data, uint256 podCallGasLimit_) internal pure returns(Info memory info) {
DataPtr ptr;
assembly {
assembly { // solhint-disable-line no-inline-assembly
ptr := data.slot
}
info.data = ptr;
Expand Down Expand Up @@ -180,7 +180,7 @@ library TokenPodsLib {

function _getData(Info memory info) private pure returns(Data storage data) {
DataPtr ptr = info.data;
assembly {
assembly { // solhint-disable-line no-inline-assembly
data.slot := ptr
}
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@1inch/erc20-pods",
"version": "0.0.14",
"name": "@1inch/token-pods",
"version": "0.0.15",
"description": "ERC20 extension enabling external smart contract based Pods to track balances of those users who opted-in to these Pods",
"repository": {
"type": "git",
Expand Down

0 comments on commit 3b1b7f0

Please sign in to comment.