Skip to content

Commit c1b7c7d

Browse files
committed
support multinode demo test net:
1 parent 2192781 commit c1b7c7d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+12222
-6
lines changed

buffett.scripts/scripts/metrics-write-datapoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ if [[ -z $INFLUX_DATABASE || -z $INFLUX_USERNAME || -z $INFLUX_PASSWORD ]]; then
1515
exit 0
1616
fi
1717

18-
echo "https://127.0.0.1:8086/write?db=${INFLUX_DATABASE}&u=${INFLUX_USERNAME}&p=${INFLUX_PASSWORD}" \
18+
echo "http://127.0.0.1:8086/write?db=${INFLUX_DATABASE}&u=${INFLUX_USERNAME}&p=${INFLUX_PASSWORD}" \
1919
| xargs curl --max-time 5 -XPOST --data-binary "$point"

buffett2/Cargo.lock

Lines changed: 2547 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

buffett2/Cargo.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[workspace]
2+
members = [
3+
"benchbot",
4+
"interface",
5+
"tokenbot",
6+
"fullnode",
7+
"fullnode-config",
8+
"genesis",
9+
"keybot",
10+
"ledgerbot",
11+
"budget",
12+
"timing",
13+
"crypto",
14+
"metrics",
15+
]

buffett2/benchbot/Cargo.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[package]
2+
name = "buffett-benchbot"
3+
version = "0.1.0"
4+
authors = ["Caesar Chad <[email protected]>"]
5+
edition = "2018"
6+
7+
[dependencies]
8+
bincode = "1.1.2"
9+
clap = "2.32"
10+
influx_db_client = "0.3.4"
11+
rayon = "1.0.0"
12+
serde_json = "1.0.10"
13+
buffett-core = "0.1.1"
14+
buffett-crypto = "0.1.1"
15+
buffett-metrics ="0.1.3"
16+
buffett-timing="0.1.1"

0 commit comments

Comments
 (0)