We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adb2f5a commit 32a622fCopy full SHA for 32a622f
README.md
@@ -287,7 +287,7 @@ cargo build --release
287
cargo r --bin kobe-api -- \
288
--ip 127.0.0.1 \
289
--port 8080 \
290
- --mongo-connection-uri "" \
+ --mongo-connection-uri "mongodb://<username>:<password>@localhost:27017" \
291
--mongo-db-name validators \
292
--sentry-api-url "" \
293
--rpc-url "https://api.testnet.solana.com"
api/src/resolvers/query_resolver.rs
@@ -842,6 +842,7 @@ impl QueryResolver {
842
.arr
843
.iter()
844
.map(ValidatorHistoryEntryResponse::from_validator_history_entry)
845
+ .filter(|history| history.epoch.ne(&u16::MAX))
846
.collect(),
847
};
848
0 commit comments