Skip to content

Commit

Permalink
Index address so that filter can be used
Browse files Browse the repository at this point in the history
  • Loading branch information
vjrantal committed Jun 1, 2017
1 parent b969be4 commit ed935f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Telemetry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity ^0.4.4;
contract Telemetry {
mapping(address => string) latestTelemetry;

event TelemetryReceived(address from, string telemetry);
event TelemetryReceived(address indexed from, string telemetry);

function sendTelemetry(string telemetry) {
latestTelemetry[msg.sender] = telemetry;
Expand Down

0 comments on commit ed935f0

Please sign in to comment.