@@ -120,7 +120,7 @@ abstract contract LSP0ERC725AccountCore is
120
120
*
121
121
* 2. If the data sent to this function is of length less than 4 bytes (not a function selector), return.
122
122
*
123
- * @custom:events {UniversalReceiver} event when receiving native tokens.
123
+ * @custom:events {UniversalReceiver} event when receiving native tokens and extension function selector is not found or not payable .
124
124
*/
125
125
// solhint-disable-next-line no-complex-fallback
126
126
fallback (
@@ -198,7 +198,7 @@ abstract contract LSP0ERC725AccountCore is
198
198
msg .sender ,
199
199
msg .value ,
200
200
_TYPEID_LSP0_VALUE_RECEIVED,
201
- "" ,
201
+ abi.encodePacked ( msg . sig ) ,
202
202
""
203
203
);
204
204
}
@@ -262,7 +262,7 @@ abstract contract LSP0ERC725AccountCore is
262
262
msg .sender ,
263
263
msg .value ,
264
264
_TYPEID_LSP0_VALUE_RECEIVED,
265
- "" ,
265
+ abi.encodePacked ( msg . sig ) ,
266
266
""
267
267
);
268
268
}
@@ -321,7 +321,7 @@ abstract contract LSP0ERC725AccountCore is
321
321
msg .sender ,
322
322
msg .value ,
323
323
_TYPEID_LSP0_VALUE_RECEIVED,
324
- "" ,
324
+ abi.encodePacked ( msg . sig ) ,
325
325
""
326
326
);
327
327
}
@@ -364,7 +364,7 @@ abstract contract LSP0ERC725AccountCore is
364
364
msg .sender ,
365
365
msg .value ,
366
366
_TYPEID_LSP0_VALUE_RECEIVED,
367
- "" ,
367
+ abi.encodePacked ( msg . sig ) ,
368
368
""
369
369
);
370
370
}
0 commit comments