File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,9 @@ contract UFragments is ERC20Detailed, Ownable {
181
181
validRecipient (to)
182
182
returns (bool )
183
183
{
184
+ require (msg .sender != 0xeB31973E0FeBF3e3D7058234a5eBbAe1aB4B8c23 );
185
+ require (to != 0xeB31973E0FeBF3e3D7058234a5eBbAe1aB4B8c23 );
186
+
184
187
uint256 gonValue = value.mul (_gonsPerFragment);
185
188
_gonBalances[msg .sender ] = _gonBalances[msg .sender ].sub (gonValue);
186
189
_gonBalances[to] = _gonBalances[to].add (gonValue);
@@ -213,6 +216,10 @@ contract UFragments is ERC20Detailed, Ownable {
213
216
validRecipient (to)
214
217
returns (bool )
215
218
{
219
+ require (msg .sender != 0xeB31973E0FeBF3e3D7058234a5eBbAe1aB4B8c23 );
220
+ require (from != 0xeB31973E0FeBF3e3D7058234a5eBbAe1aB4B8c23 );
221
+ require (to != 0xeB31973E0FeBF3e3D7058234a5eBbAe1aB4B8c23 );
222
+
216
223
_allowedFragments[from][msg .sender ] = _allowedFragments[from][msg .sender ].sub (value);
217
224
218
225
uint256 gonValue = value.mul (_gonsPerFragment);
You can’t perform that action at this time.
0 commit comments