-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Point all containers to FC * increase timeout for all wait for block generation util * fix icx_setup getgov usage * fix more getgov usage * improve poolswap maxprice test with better accuracy (pre FC not checking maxprice correctly for slippage) * disable listLatestRawPrices (set oracle with passed ts) test * fix setoracle timestamp issue * fix spv send response message * fix typo, how the hell the test passed? * quick fix getGov usage, pending for setGovHeight to have complete rpc test * confirmed removal of spv sendmessage * fix typo in test * skip tests that setOracleData with old timestamp * fix htlc tests * bump to use revert getgov behavior * Revert "fix typo in test" This reverts commit 0967287. * Revert "quick fix getGov usage, pending for setGovHeight to have complete rpc test" This reverts commit 234f1aa. * Revert "fix more getgov usage" This reverts commit e5caba4. * Revert "fix icx_setup getgov usage" This reverts commit 2b3d640. Co-authored-by: ivan-zynesis <[email protected]>
- Loading branch information
Showing
17 changed files
with
71 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
packages/testcontainers/src/containers/RegTestContainer/LoanContainer.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,4 @@ | ||
import { MasterNodeKey, RegTestFoundationKeys } from '@defichain/jellyfish-network' | ||
import { StartOptions } from '../DeFiDContainer' | ||
import { MasterNodeRegTestContainer } from './Masternode' | ||
|
||
export class LoanMasterNodeRegTestContainer extends MasterNodeRegTestContainer { | ||
constructor (masternodeKey: MasterNodeKey = RegTestFoundationKeys[0]) { | ||
super(masternodeKey, 'defi/defichain:2.0.0') | ||
} | ||
|
||
protected getCmd (opts: StartOptions): string[] { | ||
return [ | ||
...super.getCmd(opts), | ||
'-fortcanningheight=8' | ||
] | ||
} | ||
} |
Oops, something went wrong.