mirror of
https://github.com/Instadapp/dsa-connectors-old.git
synced 2024-07-29 22:47:46 +00:00
Minor changes
This commit is contained in:
parent
dc8c18e051
commit
db20640337
|
@ -181,8 +181,7 @@ contract BasicResolver is DydxHelpers {
|
||||||
emit LogDeposit(token, _marketId, _amt, getId, setId);
|
emit LogDeposit(token, _marketId, _amt, getId, setId);
|
||||||
bytes32 _eventCode = keccak256("LogDeposit(address,uint256,uint256,uint256,uint256)");
|
bytes32 _eventCode = keccak256("LogDeposit(address,uint256,uint256,uint256,uint256)");
|
||||||
bytes memory _eventParam = abi.encode(token, _marketId, _amt, getId, setId);
|
bytes memory _eventParam = abi.encode(token, _marketId, _amt, getId, setId);
|
||||||
(uint _type, uint _id) = connectorID();
|
emitEvent(_eventCode, _eventParam);
|
||||||
EventInterface(getEventAddr()).emitEvent(_type, _id, _eventCode, _eventParam);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -217,9 +216,7 @@ contract BasicResolver is DydxHelpers {
|
||||||
emit LogWithdraw(token, _marketId, _amt, getId, setId);
|
emit LogWithdraw(token, _marketId, _amt, getId, setId);
|
||||||
bytes32 _eventCode = keccak256("LogWithdraw(address,uint256,uint256,uint256,uint256)");
|
bytes32 _eventCode = keccak256("LogWithdraw(address,uint256,uint256,uint256,uint256)");
|
||||||
bytes memory _eventParam = abi.encode(token, _marketId, _amt, getId, setId);
|
bytes memory _eventParam = abi.encode(token, _marketId, _amt, getId, setId);
|
||||||
(uint _type, uint _id) = connectorID();
|
emitEvent(_eventCode, _eventParam);
|
||||||
EventInterface(getEventAddr()).emitEvent(_type, _id, _eventCode, _eventParam);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -251,8 +248,7 @@ contract BasicResolver is DydxHelpers {
|
||||||
emit LogBorrow(token, _marketId, _amt, getId, setId);
|
emit LogBorrow(token, _marketId, _amt, getId, setId);
|
||||||
bytes32 _eventCode = keccak256("LogBorrow(address,uint256,uint256,uint256,uint256)");
|
bytes32 _eventCode = keccak256("LogBorrow(address,uint256,uint256,uint256,uint256)");
|
||||||
bytes memory _eventParam = abi.encode(token, _marketId, _amt, getId, setId);
|
bytes memory _eventParam = abi.encode(token, _marketId, _amt, getId, setId);
|
||||||
(uint _type, uint _id) = connectorID();
|
emitEvent(_eventCode, _eventParam);
|
||||||
EventInterface(getEventAddr()).emitEvent(_type, _id, _eventCode, _eventParam);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -291,8 +287,7 @@ contract BasicResolver is DydxHelpers {
|
||||||
emit LogPayback(token, _marketId, _amt, getId, setId);
|
emit LogPayback(token, _marketId, _amt, getId, setId);
|
||||||
bytes32 _eventCode = keccak256("LogPayback(address,uint256,uint256,uint256,uint256)");
|
bytes32 _eventCode = keccak256("LogPayback(address,uint256,uint256,uint256,uint256)");
|
||||||
bytes memory _eventParam = abi.encode(token, _marketId, _amt, getId, setId);
|
bytes memory _eventParam = abi.encode(token, _marketId, _amt, getId, setId);
|
||||||
(uint _type, uint _id) = connectorID();
|
emitEvent(_eventCode, _eventParam);
|
||||||
EventInterface(getEventAddr()).emitEvent(_type, _id, _eventCode, _eventParam);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user