We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d694d87 commit eadece7Copy full SHA for eadece7
1 file changed
contracts/src/core/AlignedLayerServiceManager.sol
@@ -32,6 +32,12 @@ contract AlignedLayerServiceManager is
32
uint32 taskCreatedBlock,
33
string batchDataPointer
34
);
35
+ //old NewBatch event, for smooth Operator upgradeability
36
+ event NewBatch(
37
+ bytes32 indexed batchMerkleRoot,
38
+ uint32 taskCreatedBlock,
39
+ string batchDataPointer
40
+ );
41
42
event BatchVerified(bytes32 indexed batchMerkleRoot, address senderAddress);
43
event BatcherBalanceUpdated(address indexed batcher, uint256 newBalance);
@@ -97,6 +103,11 @@ contract AlignedLayerServiceManager is
97
103
uint32(block.number),
98
104
batchDataPointer
99
105
106
+ emit NewBatch(
107
+ batchMerkleRoot,
108
+ uint32(block.number),
109
+ batchDataPointer
110
100
111
}
101
112
102
113
function respondToTask(
0 commit comments