Skip to content

Commit

Permalink
Merge branch 'master' into v1.15.0-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iKapitonau committed Dec 4, 2024
2 parents 5a82dc2 + 3fe10ff commit 68bcd0c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions client/docs/static/openapi/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/docs/static/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Secret Network
description: A REST interface for queries and transactions
version: v1.12
version: v1.14
paths:
/cosmos/auth/v1beta1/accounts:
get:
Expand Down
2 changes: 1 addition & 1 deletion client/docs/static/swagger/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ swagger: '2.0'
info:
title: Secret Network
description: A REST interface for queries and transactions
version: v1.12
version: v1.14
paths:
/cosmos/auth/v1beta1/accounts:
get:
Expand Down
2 changes: 1 addition & 1 deletion client/docs/statik/statik.go

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion x/compute/internal/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ func NewKeeper(
}
// always wrap the messenger, even if it was replaced by an option
keeper.messenger = callDepthMessageHandler{keeper.messenger, keeper.maxCallDepth}

keeper.queryPlugins = DefaultQueryPlugins(govKeeper, distKeeper, mintKeeper, bankKeeper, stakingKeeper, queryRouter, &keeper, channelKeeper).Merge(customPlugins)

return keeper
Expand Down
3 changes: 2 additions & 1 deletion x/compute/internal/keeper/test_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"fmt"
"os"
"path/filepath"
"strings"
"testing"
"time"

Expand Down Expand Up @@ -1133,6 +1134,6 @@ func makeBlockIDRandom() tmtypes.BlockID {
func txhash(t *testing.T, ctx sdk.Context) string {
require.NotEmpty(t, ctx.TxBytes())
txhashBz := sha256.Sum256(ctx.TxBytes())
txhash := hex.EncodeToString(txhashBz[:])
txhash := strings.ToUpper(hex.EncodeToString(txhashBz[:]))
return txhash
}
2 changes: 1 addition & 1 deletion x/compute/internal/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func NewEnv(ctx sdk.Context, creator sdk.AccAddress, deposit sdk.Coins, contract

if txCounter, ok := TXCounter(ctx); ok {
txhashBz := sha256.Sum256(ctx.TxBytes())
txhash := hex.EncodeToString(txhashBz[:])
txhash := strings.ToUpper(hex.EncodeToString(txhashBz[:]))

env.Transaction = &wasmTypes.TransactionInfo{
Index: txCounter,
Expand Down

0 comments on commit 68bcd0c

Please sign in to comment.