Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ release-dry-run:
SIMAPP = github.com/crypto-org-chain/cronos/app

# Install the runsim binary with a temporary workaround of entering an outside
# directory as the "go get" command ignores the -mod option and will polute the
# directory as the "go get" command ignores the -mod option and will pollute the
# go.{mod, sum} files.
#
# ref: https://github.com/golang/go/issues/30515
Expand Down
2 changes: 2 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import (
evmhandlers "github.com/crypto-org-chain/cronos/x/cronos/keeper/evmhandlers"
cronosprecompiles "github.com/crypto-org-chain/cronos/x/cronos/keeper/precompiles"
"github.com/crypto-org-chain/cronos/x/cronos/middleware"

// force register the extension json-rpc.
_ "github.com/crypto-org-chain/cronos/x/cronos/rpc"
cronostypes "github.com/crypto-org-chain/cronos/x/cronos/types"
Expand All @@ -57,6 +58,7 @@ import (
e2eekeyring "github.com/crypto-org-chain/cronos/x/e2ee/keyring"
e2eetypes "github.com/crypto-org-chain/cronos/x/e2ee/types"
"github.com/ethereum/go-ethereum/common"

// Force-load the tracer engines to trigger registration
"github.com/ethereum/go-ethereum/core/vm"
_ "github.com/ethereum/go-ethereum/eth/tracers/js"
Expand Down
4 changes: 2 additions & 2 deletions x/cronos/rpc/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func (api *CronosAPI) GetTransactionReceiptsByBlock(blockNrOrHash rpctypes.Block
"blockNumber": hexutil.Uint64(blockNumber),
"transactionIndex": hexutil.Uint64(txIndex),

// sender and receiver (contract or EOA) addreses
// sender and receiver (contract or EOA) addresses
"from": from,
"to": txData.To(),
"type": hexutil.Uint(txData.Type()),
Expand Down Expand Up @@ -338,7 +338,7 @@ func (api *CronosAPI) ReplayBlock(blockNrOrHash rpctypes.BlockNumberOrHash, post
"blockNumber": hexutil.Uint64(blockNumber),
"transactionIndex": hexutil.Uint64(txIndex),

// sender and receiver (contract or EOA) addreses
// sender and receiver (contract or EOA) addresses
"from": from,
"to": txData.GetTo(),
}
Expand Down
Loading