Browse Source

reorganize examples into folder

Manuel Araoz 9 years ago
parent
commit
71295a12a9

+ 1 - 1
contracts/BadArrayUse.sol → contracts/examples/BadArrayUse.sol

@@ -1,4 +1,4 @@
-import './PullPaymentCapable.sol';
+import '../PullPaymentCapable.sol';
 
 // UNSAFE CODE, DO NOT USE!
 

+ 0 - 0
contracts/BadFailEarly.sol → contracts/examples/BadFailEarly.sol


+ 0 - 0
contracts/BadPushPayments.sol → contracts/examples/BadPushPayments.sol


+ 1 - 1
contracts/GoodArrayUse.sol → contracts/examples/GoodArrayUse.sol

@@ -1,4 +1,4 @@
-import './PullPaymentCapable.sol';
+import '../PullPaymentCapable.sol';
 
 contract GoodArrayUse is PullPaymentCapable {
   address[] employees;

+ 0 - 0
contracts/GoodFailEarly.sol → contracts/examples/GoodFailEarly.sol


+ 0 - 0
contracts/GoodPullPayments.sol → contracts/examples/GoodPullPayments.sol


+ 1 - 1
contracts/PullPaymentBid.sol → contracts/examples/PullPaymentBid.sol

@@ -1,4 +1,4 @@
-import './PullPaymentCapable.sol';
+import '../PullPaymentCapable.sol';
 
 contract PullPaymentBid is PullPaymentCapable {
   address public highestBidder;