Skip to content

Commit 8e31ca5

Browse files
committed
chore(uniond): test wasmd gas changes
1 parent ac9ec2e commit 8e31ca5

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

uniond/app/ante.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) {
5454

5555
anteDecorators := []sdk.AnteDecorator{
5656
ante.NewSetUpContextDecorator(), // outermost AnteDecorator. SetUpContext must be called first
57-
NewGasCostDecorator(),
5857
wasmkeeper.NewLimitSimulationGasDecorator(options.NodeConfig.SimulationGasLimit), // after setup context to enforce limits early
5958
wasmkeeper.NewCountTXDecorator(options.TXCounterStoreService),
6059
wasmkeeper.NewTxContractsDecorator(),

uniond/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ replace (
241241
github.com/skip-mev/feemarket => github.com/unionlabs/feemarket v0.0.0-20250725184025-cd8b620c9675
242242
)
243243

244-
replace github.com/CosmWasm/wasmd => github.com/unionlabs/wasmd v0.0.0-20250228223503-fa271bbe8508
244+
replace github.com/CosmWasm/wasmd => github.com/unionlabs/wasmd v0.0.0-20250902022954-26c2c7f3c5f0
245245

246246
replace (
247247
github.com/cosmos/ibc-go/modules/capability => github.com/unionlabs/ibc-go/modules/capability v0.0.0-20250228202801-8024a4241fb8

uniond/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,8 +1025,8 @@ github.com/unionlabs/ibc-go/modules/capability v0.0.0-20250228202801-8024a4241fb
10251025
github.com/unionlabs/ibc-go/modules/capability v0.0.0-20250228202801-8024a4241fb8/go.mod h1:gwR2WaZNTcpdyJVmYZx+bLw5pmaZt0I1w/eP2jNJV2o=
10261026
github.com/unionlabs/ibc-go/v8 v8.0.0-20250228202801-8024a4241fb8 h1:PgqRrbtizBKah6EZzusoyDD4fPHoui6FoE4A8418mgQ=
10271027
github.com/unionlabs/ibc-go/v8 v8.0.0-20250228202801-8024a4241fb8/go.mod h1:FtR4596WBCLYmuBlzhq8nne2F/Boruc3ZcajfnPEPe0=
1028-
github.com/unionlabs/wasmd v0.0.0-20250228223503-fa271bbe8508 h1:+Nbq/9l6mZZfVLWxfzhDrFNRdzKaYZwwl77g3N4v+iw=
1029-
github.com/unionlabs/wasmd v0.0.0-20250228223503-fa271bbe8508/go.mod h1:REcL/5QdzI+YuGnXFE5FyoETa4bupJZXSNGjZXzWLO4=
1028+
github.com/unionlabs/wasmd v0.0.0-20250902022954-26c2c7f3c5f0 h1:PJZFF7WJ8ohumYg7JL3tsJ1o3mgXuUcYHpRm3fJ2PfY=
1029+
github.com/unionlabs/wasmd v0.0.0-20250902022954-26c2c7f3c5f0/go.mod h1:REcL/5QdzI+YuGnXFE5FyoETa4bupJZXSNGjZXzWLO4=
10301030
github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA=
10311031
github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
10321032
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=

uniond/uniond.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ _: {
5050
(nix-filter.matchExt "md")
5151
];
5252
};
53-
vendorHash = "sha256-9XWSuq5xvnTTJaR+eYeJ2Xugw7f4hNa7umtvjurw5VU=";
53+
vendorHash = "sha256-gdO8OHk3iJmrxZ4rTqV9MaPPNqTmTSzoWCtYPjNycik=";
5454
doCheck = true;
5555
meta.mainProgram = "uniond";
5656
}

0 commit comments

Comments
 (0)