Skip to content

Commit

Permalink
Add a compatibility shim.
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Jan 11, 2018
1 parent 6a5e703 commit c0d9f11
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions contracts/PreICOProxyBuyer_EventCompatibility.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/**
* This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/

pragma solidity ^0.4.6;

/**
* ABI compatibility shim to get.
*
* You can use this shim to get events out of old PreICOProxyBuyer contracts.
*/
contract PreICOProxyBuyer_EventCompatibility {

/** Somebody loaded their investment money */
event Invested(address investor, uint weiAmount, uint128 customerId);

}

0 comments on commit c0d9f11

Please sign in to comment.