Skip to content

Commit

Permalink
Block and Timestamp schedulers for testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
pipermerriam committed Oct 5, 2016
1 parent 960a200 commit 834a093
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions alarm_client/config.py
Expand Up @@ -66,6 +66,9 @@
'request_schedule_lib': '0x032635c4bac159d1b3b138f58e23f6a80d94717a',
'safe_send_lib': '0xccb71bdec31b8d0f21f140940616b2d09334851b',
'claim_lib': '0x1c868b2a0ecd8fd2bf2e893e18fb368d38cddd1f',
'scheduler_lib': '0x102901670aa3997f63280d744b88aa174df57324',
'block_scheduler': '0xbc5186e8aeacb8752454c3f62576f96209fc2395',
'timestamp_scheduler': '0x3d919bb1e5c58a2dd99ea463d52045b112eb4330',
}
},
}
Expand Down
4 changes: 4 additions & 0 deletions contracts/BlockScheduler.sol
Expand Up @@ -14,3 +14,7 @@ contract BlockScheduler is BaseScheduler {
factoryAddress = _factoryAddress;
}
}


contract TestnetBlockScheduler is BlockScheduler(0x6005cb5aa9c4774c9f1f46ef3323c1337809cdb0) {
}
4 changes: 4 additions & 0 deletions contracts/TimestampScheduler.sol
Expand Up @@ -14,3 +14,7 @@ contract TimestampScheduler is BaseScheduler {
factoryAddress = _factoryAddress;
}
}


contract TestnetTimestampScheduler is TimestampScheduler(0x6005cb5aa9c4774c9f1f46ef3323c1337809cdb0) {
}

0 comments on commit 834a093

Please sign in to comment.