Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Merge branch 'forward-value-to-keep' of https://github.com/keep-netwo…
Browse files Browse the repository at this point in the history
…rk/tbtc into forward-value-to-keep
  • Loading branch information
NicholasDotSol committed Feb 5, 2020
2 parents 6d92d5f + 25403a1 commit f8aa4dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion implementation/contracts/system/TBTCDepositToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import "./DepositFactoryAuthority.sol";
contract TBTCDepositToken is ERC721Metadata, DepositFactoryAuthority {

constructor(address _depositFactory)
ERC721Metadata("tBTC Deopsit Token", "TDT")
ERC721Metadata("tBTC Deposit Token", "TDT")
public {
initialize(_depositFactory);
}
Expand Down
9 changes: 8 additions & 1 deletion implementation/migrations/3_initialize.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
const TBTCSystem = artifacts.require('TBTCSystem')

const BTCETHPriceFeed = artifacts.require('BTCETHPriceFeed')
const MockBTCUSDPriceFeed = artifacts.require('BTCUSDPriceFeed')
const MockETHUSDPriceFeed = artifacts.require('ETHUSDPriceFeed')

const DepositFactory = artifacts.require('DepositFactory')
const Deposit = artifacts.require('Deposit')
const TBTCToken = artifacts.require('TBTCToken')
const TBTCDepositToken = artifacts.require('TBTCDepositToken')
const FeeRebateToken = artifacts.require('FeeRebateToken')
const VendingMachine = artifacts.require('VendingMachine')

const {
KeepRegistryAddress,
BTCUSDPriceFeed,
Expand All @@ -19,7 +27,6 @@ module.exports = async function(deployer, network) {
KeepRegistryAddress,
DepositFactory.address,
Deposit.address,
TBTCSystem.address,
TBTCToken.address,
TBTCDepositToken.address,
FeeRebateToken.address,
Expand Down

0 comments on commit f8aa4dd

Please sign in to comment.