Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ bee-configs:
blockchain-rpc-endpoint: "ws://geth-swap.bee-playground.svc.swarm1.local:8546"
bootnode-mode: false
bootnode: []
bzz-token-address: "0x6aab14fe9cccd64a502d23842d916eb5321c26e7"
cache-capacity: 1000000
chequebook-enable: true
cors-allowed-origins: []
Expand Down
1 change: 1 addition & 0 deletions config/local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ bee-configs:
blockchain-rpc-endpoint: "ws://geth-swap:8546"
bootnode-mode: false
bootnode: []
bzz-token-address: "0x6aab14fe9cccd64a502d23842d916eb5321c26e7"
cache-capacity: 20000
chequebook-enable: true
cors-allowed-origins: []
Expand Down
1 change: 1 addition & 0 deletions pkg/orchestration/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ type Config struct {
BlockTime *uint64 `yaml:"block-time,omitempty"` // chain block time
BootnodeMode *bool `yaml:"bootnode-mode,omitempty"` // cause the node to always accept incoming connections
Bootnodes *[]string `yaml:"bootnode,omitempty"` // initial nodes to connect to
BzzTokenAddress *string `yaml:"bzz-token-address,omitempty"` // bzz token contract address
CacheCapacity *uint64 `yaml:"cache-capacity,omitempty"` // cache capacity in chunks, multiply by 4096 to get approximate capacity in bytes
CacheRetrieval *bool `yaml:"cache-retrieval,omitempty"` // enable forwarded content caching
ChequebookEnable *bool `yaml:"chequebook-enable,omitempty"` // enable chequebook
Expand Down
Loading