@inco/lightning 0.7.7 → 0.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
pragma solidity ^0.8;
|
|
3
3
|
|
|
4
4
|
// the fee should be modified through upgrades to limit gas cost
|
|
5
|
-
uint256 constant FEE = 0.
|
|
5
|
+
uint256 constant FEE = 0.000001 ether;
|
|
6
6
|
|
|
7
7
|
/// @notice Fee utils for lightning functions that require a fee
|
|
8
8
|
/// @dev the fee may be changed through upgrades, develop your apps accordingly!
|
package/src/test/IncoTest.sol
CHANGED
|
@@ -39,7 +39,7 @@ contract IncoTest is MockOpHandler, DeployUtils, FakeDecryptionAttester, MockRem
|
|
|
39
39
|
function setUp() public virtual {
|
|
40
40
|
deployCreateX();
|
|
41
41
|
vm.startPrank(testDeployer);
|
|
42
|
-
vm.setEnv("
|
|
42
|
+
vm.setEnv("SHOULD_SETUP_TEE_SIGNER", "true"); // results in a network pubkey and decrypt signer being populated in the TEE Lifecycle
|
|
43
43
|
(IIncoLightning proxy,) = deployIncoLightningUsingConfig({
|
|
44
44
|
deployer: testDeployer,
|
|
45
45
|
// The highest precedent deployment
|