Skip to content

Commit 9890739

Browse files
authored
solana: decrease default max priority fee to 1e8 microlamports (#789)
* solana: decrease default max priority fee to 1e8 microlamports * cosmwasm: disable flaky token bridge tests
1 parent 5265167 commit 9890739

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

platforms/cosmwasm/__tests__/integration/tokenBridge.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ afterEach(async () => {
7373
nockBack.setMode("wild");
7474
});
7575

76-
describe("TokenBridge Tests", () => {
76+
// TODO: temporarily disabled due to flaky RPC
77+
describe.skip("TokenBridge Tests", () => {
7778
const p = new CosmwasmPlatform(network, configs);
7879

7980
let tb: TokenBridge<Network, CosmwasmChains>;

platforms/solana/src/signer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
const DEFAULT_PRIORITY_FEE_PERCENTILE = 0.5;
3434
const DEFAULT_PERCENTILE_MULTIPLE = 1;
3535
const DEFAULT_MIN_PRIORITY_FEE = 1;
36-
const DEFAULT_MAX_PRIORITY_FEE = 1e9;
36+
const DEFAULT_MAX_PRIORITY_FEE = 1e8;
3737

3838
const DEFAULT_MAX_RESUBMITS = 5;
3939
const DEFAULT_COMPUTE_BUDGET = 250_000;

0 commit comments

Comments
 (0)