Skip to content

Commit

Permalink
Fix URL references from p-offtermatt to informalsystems
Browse files Browse the repository at this point in the history
  • Loading branch information
p-offtermatt committed Jul 27, 2023
1 parent 14b388a commit 64ceb28
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ On a technical level, CometMock communicates with applications via ABCI through

Currently, CometMock imitates CometBFT v0.34. It offers *many* of the RPC endpoints offered by Comet (https://docs.cometbft.com/v0.34/rpc/),
in particular it supports the subset used by Gorelayer (https://github.com/cosmos/relayer/).
See the endpoints offered here: [https://github.com/p-offtermatt/CometMock/cometmock/rpc_server/routes.go#L30C2-L53](https://github.com/informalsystems/CometMock/blob/main/cometmock/rpc_server/routes.go)
See the endpoints offered here: [https://github.com/informalsystems/CometMock/cometmock/rpc_server/routes.go#L30C2-L53](https://github.com/informalsystems/CometMock/blob/main/cometmock/rpc_server/routes.go)

## Installation

Expand Down
4 changes: 2 additions & 2 deletions cometmock/abci_client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"github.com/cometbft/cometbft/state/txindex"
indexerkv "github.com/cometbft/cometbft/state/txindex/kv"
"github.com/cometbft/cometbft/types"
"github.com/p-offtermatt/CometMock/cometmock/storage"
"github.com/p-offtermatt/CometMock/cometmock/utils"
"github.com/informalsystems/CometMock/cometmock/storage"
"github.com/informalsystems/CometMock/cometmock/utils"
)

var GlobalClient *AbciClient
Expand Down
6 changes: 3 additions & 3 deletions cometmock/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"github.com/cometbft/cometbft/privval"
"github.com/cometbft/cometbft/state"
"github.com/cometbft/cometbft/types"
"github.com/p-offtermatt/CometMock/cometmock/abci_client"
"github.com/p-offtermatt/CometMock/cometmock/rpc_server"
"github.com/p-offtermatt/CometMock/cometmock/storage"
"github.com/informalsystems/CometMock/cometmock/abci_client"
"github.com/informalsystems/CometMock/cometmock/rpc_server"
"github.com/informalsystems/CometMock/cometmock/storage"
)

// GetMockPVsFromNodeHomes returns a list of MockPVs, created with the priv_validator_key's from the specified node homes
Expand Down
4 changes: 2 additions & 2 deletions cometmock/rpc_server/routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
rpctypes "github.com/cometbft/cometbft/rpc/jsonrpc/types"
"github.com/cometbft/cometbft/types"
"github.com/cometbft/cometbft/version"
"github.com/p-offtermatt/CometMock/cometmock/abci_client"
"github.com/p-offtermatt/CometMock/cometmock/utils"
"github.com/informalsystems/CometMock/cometmock/abci_client"
"github.com/informalsystems/CometMock/cometmock/utils"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cometmock/rpc_server/websocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
cmtquery "github.com/cometbft/cometbft/libs/pubsub/query"
ctypes "github.com/cometbft/cometbft/rpc/core/types"
rpctypes "github.com/cometbft/cometbft/rpc/jsonrpc/types"
"github.com/p-offtermatt/CometMock/cometmock/abci_client"
"github.com/informalsystems/CometMock/cometmock/abci_client"
)

const (
Expand Down

0 comments on commit 64ceb28

Please sign in to comment.