mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +00:00
f76736e14a
- Added a new method and type for contract transactions. - Added functions to emit fallback events from contract transactions. - Added GetLogs request generator - Added tests for GetLogs request generator
11 lines
185 B
Solidity
11 lines
185 B
Solidity
// SPDX-License-Identifier: GPL-3.0
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract Subscription {
|
|
event SubscriptionEvent();
|
|
fallback() external {
|
|
emit SubscriptionEvent();
|
|
}
|
|
}
|