Skip to content

Commit 6ef2038

Browse files
author
jagdeep sidhu
committed
remove test network in contract (not used)
1 parent f22a796 commit 6ef2038

File tree

3 files changed

+15
-18
lines changed

3 files changed

+15
-18
lines changed

contracts/SyscoinVaultManager.sol

+1-7
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,6 @@ contract SyscoinVaultManager is SyscoinTransactionProcessorI, ReentrancyGuard, E
7676
// if bridging native SYS from NEVM -> UTXO, or vice versa
7777
uint64 public immutable SYSAssetGuid;
7878

79-
// if true => testNetwork => skip some checks for native bridging
80-
bool public immutable testNetwork;
81-
8279
//-------------------------------------------------------------------------
8380
// Events
8481
//-------------------------------------------------------------------------
@@ -94,16 +91,13 @@ contract SyscoinVaultManager is SyscoinTransactionProcessorI, ReentrancyGuard, E
9491
/**
9592
* @param _trustedRelayerContract The SyscoinRelay or similar contract
9693
* @param _sysxGuid The Syscoin asset GUID representing "native SYS" (if needed)
97-
* @param _testNetwork If true => skip native bridging checks
9894
*/
9995
constructor(
10096
address _trustedRelayerContract,
101-
uint64 _sysxGuid,
102-
bool _testNetwork
97+
uint64 _sysxGuid
10398
) {
10499
trustedRelayerContract = _trustedRelayerContract;
105100
SYSAssetGuid = _sysxGuid;
106-
testNetwork = _testNetwork;
107101
}
108102

109103
//-------------------------------------------------------------------------

migrations/2_deploy_contracts.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ module.exports = async function(deployer, network, accounts) {
1313
await deployer.deploy(SyscoinRelayTest);
1414

1515
console.log('Deploying SyscoinVaultManager...');
16-
// trustedRelayer is SyscoinRelay, sysxGuid=12345, testNetwork=false
17-
await deployer.deploy(SyscoinVaultManager, SyscoinRelay.address, 12345, false);
16+
// trustedRelayer is SyscoinRelay, sysxGuid=123456, testNetwork=false
17+
await deployer.deploy(SyscoinVaultManager, SyscoinRelay.address, 123456, { from: accounts[0] });
1818

1919
let syscoinRelay = await SyscoinRelay.deployed();
2020
console.log('Init syscoinRelay with SyscoinVaultManager...');
21-
await syscoinRelay.init(SyscoinVaultManager.address);
21+
await syscoinRelay.init(SyscoinVaultManager.address, { from: accounts[0] });
22+
2223
};

truffle-config.js

+10-8
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,23 @@ module.exports = {
1212
},
1313
mainnet: {
1414
host: "localhost",
15-
port: 8101,
15+
port: 8545,
1616
from: "0xe600696eb0555c93f2c391a1406726cee239091d",
1717
network_id: "57",
1818
gas: 1000000,
1919
maxFeePerGas: 1000000,
2020
maxPriorityFeePerGas: "1000000"
2121
},
2222
tanenbaum: {
23-
host: "localhost",
24-
port: 8101,
25-
from: "0xe600696eb0555c93f2c391a1406726cee239091d",
26-
network_id: "5700",
27-
gas: 1000000,
28-
maxFeePerGas: 1000000,
29-
maxPriorityFeePerGas: "1000000"
23+
provider: function () {
24+
return new HDWalletProvider(mnenomic, "http://localhost:8545");
25+
},
26+
network_id: "5700",
27+
gas: 8000000,
28+
maxFeePerGas: 120000000,
29+
maxPriorityFeePerGas: 10000000,
30+
gasPrice: 120000000,
31+
3032
},
3133
rinkeby: {
3234
provider: function () {

0 commit comments

Comments
 (0)