Skip to content

Commit

Permalink
refactor: Upgrade nearcore to 1.23.1-rc.2 (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
khorolets committed Jan 5, 2022
1 parent 5081f39 commit fae5b21
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 40 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## 0.10.6

* Upgrade `nearcore` to 1.23.1-rc.2


## 0.10.5

* Upgrade `nearcore` to 1.23.1-rc.1
Expand Down
70 changes: 35 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "indexer-explorer"
version = "0.10.5"
version = "0.10.6"
authors = ["Near Inc <hello@nearprotocol.com>"]
edition = "2021"

Expand Down Expand Up @@ -38,6 +38,6 @@ tracing-subscriber = "0.2.4"
uint = { version = "0.8.3", default-features = false }

actix-diesel = { git = "https://github.com/frol/actix-diesel", branch = "actix-0.11-beta.2" }
near-indexer = { git = "https://github.com/near/nearcore", rev = "4807978dd6a952a25b2f304fb15433ea9480b39d" }
near-crypto = { git = "https://github.com/near/nearcore", rev = "4807978dd6a952a25b2f304fb15433ea9480b39d" }
near-client = { git = "https://github.com/near/nearcore", rev = "4807978dd6a952a25b2f304fb15433ea9480b39d" }
near-indexer = { git = "https://github.com/near/nearcore", rev = "8d00e3774e753b198b7c71fbaf6476ba8f6a4f7a" }
near-crypto = { git = "https://github.com/near/nearcore", rev = "8d00e3774e753b198b7c71fbaf6476ba8f6a4f7a" }
near-client = { git = "https://github.com/near/nearcore", rev = "8d00e3774e753b198b7c71fbaf6476ba8f6a4f7a" }
2 changes: 1 addition & 1 deletion src/main.rs
Expand Up @@ -245,7 +245,7 @@ fn main() {
let pool = models::establish_connection();

let mut env_filter = EnvFilter::new(
"tokio_reactor=info,near=info,near=error,stats=info,telemetry=info,indexer=info,indexer_for_explorer=info,aggregated=info",
"tokio_reactor=info,near=info,stats=info,telemetry=info,indexer=info,indexer_for_explorer=info,aggregated=info",
);

if let Ok(rust_log) = std::env::var("RUST_LOG") {
Expand Down

0 comments on commit fae5b21

Please sign in to comment.