@@ -28,7 +28,7 @@ abstract contract BasicConnector is Events, DSMath, Basic {
28
28
uint256 underlyingAmt ,
29
29
uint256 getId ,
30
30
uint256 setId
31
- ) public returns (string memory _eventName , bytes memory _eventParam ) {
31
+ ) public payable returns (string memory _eventName , bytes memory _eventParam ) {
32
32
uint256 _underlyingAmt = getUint (getId, underlyingAmt);
33
33
34
34
IERC4626 vaultTokenContract = IERC4626 (vaultToken);
@@ -71,7 +71,7 @@ abstract contract BasicConnector is Events, DSMath, Basic {
71
71
uint256 shareAmt ,
72
72
uint256 getId ,
73
73
uint256 setId
74
- ) public returns (string memory _eventName , bytes memory _eventParam ) {
74
+ ) public payable returns (string memory _eventName , bytes memory _eventParam ) {
75
75
uint256 _shareAmt = getUint (getId, shareAmt);
76
76
77
77
IERC4626 vaultTokenContract = IERC4626 (vaultToken);
@@ -116,7 +116,7 @@ abstract contract BasicConnector is Events, DSMath, Basic {
116
116
address payable to ,
117
117
uint256 getId ,
118
118
uint256 setId
119
- ) public returns (string memory _eventName , bytes memory _eventParam ) {
119
+ ) public payable returns (string memory _eventName , bytes memory _eventParam ) {
120
120
uint256 _underlyingAmt = getUint (getId, underlyingAmt);
121
121
122
122
IERC4626 vaultTokenContract = IERC4626 (vaultToken);
@@ -161,7 +161,7 @@ abstract contract BasicConnector is Events, DSMath, Basic {
161
161
address payable to ,
162
162
uint256 getId ,
163
163
uint256 setId
164
- ) public returns (string memory _eventName , bytes memory _eventParam ) {
164
+ ) public payable returns (string memory _eventName , bytes memory _eventParam ) {
165
165
uint256 _shareAmt = getUint (getId, shareAmt);
166
166
167
167
IERC4626 vaultTokenContract = IERC4626 (vaultToken);
0 commit comments