File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ export class CosmwasmWatcher extends Watcher {
42
42
return SHA256 . hash ( Base64 . parse ( data ) ) . toString ( ) . toUpperCase ( ) ;
43
43
}
44
44
45
- /* These two tests are failing for Terra2. Opened an issue to address it: https://github.com/wormhole-foundation/wormhole-dashboard/issues/386
46
45
async getFinalizedBlockNumber ( ) : Promise < number > {
47
46
const result = ( await axios . get ( `${ this . rpc } /${ this . latestBlockTag } ` , AXIOS_CONFIG_JSON ) ) . data ;
48
47
if ( result && result . block . header . height ) {
@@ -156,7 +155,6 @@ export class CosmwasmWatcher extends Watcher {
156
155
}
157
156
return vaasByBlock ;
158
157
}
159
- */
160
158
}
161
159
162
160
export type CosmwasmBlockResult = {
Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ import { isBase64Encoded } from '../../utils/isBase64Encoded';
9
9
10
10
jest . setTimeout ( 60000 ) ;
11
11
12
- test ( 'getFinalizedBlockNumber(terra2)' , async ( ) => {
12
+ test . skip ( 'getFinalizedBlockNumber(terra2)' , async ( ) => {
13
13
const watcher = new TerraExplorerWatcher ( 'Mainnet' , 'Terra2' ) ;
14
14
const blockNumber = await watcher . getFinalizedBlockNumber ( ) ;
15
15
expect ( blockNumber ) . toBeGreaterThan ( 3181746 ) ;
16
16
} ) ;
17
17
18
- test ( 'getMessagesForBlocks(terra2)' , async ( ) => {
18
+ test . skip ( 'getMessagesForBlocks(terra2)' , async ( ) => {
19
19
const watcher = new TerraExplorerWatcher ( 'Mainnet' , 'Terra2' ) ;
20
20
const vaasByBlock = await watcher . getMessagesForBlocks ( 10847656 , 10847657 ) ;
21
21
const entries = Object . entries ( vaasByBlock ) ;
You can’t perform that action at this time.
0 commit comments