-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor fixes: Cork abci/msg_server refactors, test setup improvements (#…
…217) * Remove rundundant SetOutgoingTx call when creating contract call * Use setter method in IncrementInvalidationNonce() * Refactor GetApprovedScheduledCorks * Refactor ScheduleCork() * Remove use of ARHIVE_NODE_URL, and speed up orchestrator health check in test setup * Loop the validator rewards baseline check due to post-startup instability * Fix cellarfees test bug by loading the gravity denoms dynamically at setup * Hardcode 2/3 consensus for cork threshold * Deprecation comment on cork v2 vote threshold param * Move cork threshold value to static var * Adjust cork vote threshold var to const
- Loading branch information
Showing
14 changed files
with
63 additions
and
103 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ RUN npm config set user 0 | |
|
||
COPY . . | ||
|
||
ENV ARCHIVE_NODE_URL="" | ||
EXPOSE 8545 | ||
|
||
RUN yarn run compile | ||
|
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,9 +1,9 @@ | ||
export const CELLAR = '0x08c0a0B8D2eDB1d040d4f2C00A1d2f9d9b9F2677'; | ||
export const CELLAR_OWNER = '0xB6C951cf962977f123bF37de42945f7ca1cd2A52'; | ||
export const WHALE = '0xd8da6bf26964af9d7eed9e03e53415d37aa96045'; | ||
export const WHALE = '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266'; | ||
export const VALIDATORS = [ | ||
'0x14fdAC734De10065093C4Ed4a83C41638378005A', | ||
'0x7bE2a04df4b9C3227928147461e19158eB2B11d1', | ||
'0xb8c6886FDDa38adaa0F416722dd5554886C43055', | ||
'0xd312f0f1B39D54Db2829537595fC1167B14d4b34' | ||
] | ||
] |
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