Skip to content

Commit

Permalink
fix(rpc-server): Fix the name of the feature in the Cargo.toml that e…
Browse files Browse the repository at this point in the history
…nables write-methods proxy (#138)
  • Loading branch information
khorolets authored Nov 22, 2023
1 parent 3f86d16 commit b854698
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions rpc-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ near-vm-errors = "0.17.0"


[features]
default = ["submit_tx_methods", "scylla_db"]
submit_tx_methods = []
default = ["send_tx_methods", "scylla_db"]
send_tx_methods = []
tracing-instrumentation = []
postgres_db = ["database/postgres_db"]
scylla_db = ["database/scylla_db"]
Expand Down
2 changes: 1 addition & 1 deletion rpc-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM rust:1.69 AS builder
ARG features=""
ARG features="default"
WORKDIR /tmp/

COPY Cargo.lock ./
Expand Down
2 changes: 1 addition & 1 deletion state-indexer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM rust:1.69 AS builder
ARG features=""
ARG features="default"
WORKDIR /tmp/

COPY Cargo.lock ./
Expand Down
2 changes: 1 addition & 1 deletion tx-indexer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM rust:1.69 AS builder
ARG features=""
ARG features="default"
WORKDIR /tmp/

COPY Cargo.lock ./
Expand Down

0 comments on commit b854698

Please sign in to comment.