Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #131 from klaytn/release/v1.0.3
Browse files Browse the repository at this point in the history
[rosetta-klaytn]_release/v1.0.3
  • Loading branch information
jimni1222 authored Sep 13, 2022
2 parents cf2aebd + 88ffed2 commit 7a9f843
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ RUN cd src \

RUN mv src/rosetta-klaytn /app/rosetta-klaytn \
&& mkdir /app/klaytn \
&& mv src/klaytn/ken.toml /app/klaytn/ken.toml \
&& mv src/klaytn/ken.yaml /app/klaytn/ken.yaml \
&& rm -rf src

## Build Final Image
Expand Down
2 changes: 1 addition & 1 deletion configuration/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const (
SkipAdminEnv = "SKIP_ADMIN"

// MiddlewareVersion is the version of rosetta-klaytn.
MiddlewareVersion = "1.0.2"
MiddlewareVersion = "1.0.3"
)

// Configuration determines how
Expand Down
15 changes: 0 additions & 15 deletions klaytn/ken.toml

This file was deleted.

10 changes: 10 additions & 0 deletions klaytn/ken.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
syncmode: full
datadir: /data
rpcaddr: 0.0.0.0
rpcport: 8551
rpcvhosts: \*
rpcapi: debug,admin,txpool,klay,governance
ipcpath: ''
rpcreadtimeout: 120000000000
rpcwritetimeout: 120000000000
rpcidletimeout: 120000000000
2 changes: 1 addition & 1 deletion klaytn/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const (
TransferGasLimit = int64(21000) //nolint:gomnd

// KlaytnNodeArguments are the arguments to start a klaytn node instance.
KlaytnNodeArguments = `--config=/app/klaytn/ken.toml --gcmode=archive`
KlaytnNodeArguments = `--conf=/app/klaytn/ken.yaml --gcmode=archive`

// IncludeMempoolCoins does not apply to rosetta-klaytn as it is not UTXO-based.
IncludeMempoolCoins = false
Expand Down
2 changes: 1 addition & 1 deletion services/network_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (

var (
// rosetta-klaytn version
middlewareVersion = "1.0.2"
middlewareVersion = "1.0.3"

defaultNetworkOptions = &types.NetworkOptionsResponse{
Version: &types.Version{
Expand Down

0 comments on commit 7a9f843

Please sign in to comment.