events.sol 276 B

1234567891011
  1. event CounterpartySigned (
  2. address indexed party,
  3. address counter_party,
  4. uint contract_no
  5. );
  6. contract Signer {
  7. function sign(address counter_party, uint contract_no) public {
  8. emit CounterpartySigned(address(this), counter_party, contract_no);
  9. }
  10. }