Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Update CoinConfig schema
Browse files Browse the repository at this point in the history
hoffmabc committed May 4, 2020
1 parent b2c8391 commit bc214ba
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions schema/configuration.go
Original file line number Diff line number Diff line change
@@ -39,16 +39,17 @@ type WalletsConfig struct {
}

type CoinConfig struct {
Type string `json:"Type"`
APIPool []string `json:"API"`
APITestnetPool []string `json:"APITestnet"`
MaxFee uint64 `json:"MaxFee"`
FeeAPI string `json:"FeeAPI"`
HighFeeDefault uint64 `json:"HighFeeDefault"`
MediumFeeDefault uint64 `json:"MediumFeeDefault"`
LowFeeDefault uint64 `json:"LowFeeDefault"`
TrustedPeer string `json:"TrustedPeer"`
WalletOptions map[string]interface{} `json:"WalletOptions"`
Type string `json:"Type"`
APIPool []string `json:"API"`
APITestnetPool []string `json:"APITestnet"`
MaxFee uint64 `json:"MaxFee"`
FeeAPI string `json:"FeeAPI"`
SuperLowFeeDefault uint64 `json:"SuperLowFeeDefault"`
HighFeeDefault uint64 `json:"HighFeeDefault"`
MediumFeeDefault uint64 `json:"MediumFeeDefault"`
LowFeeDefault uint64 `json:"LowFeeDefault"`
TrustedPeer string `json:"TrustedPeer"`
WalletOptions map[string]interface{} `json:"WalletOptions"`
}

type DataSharing struct {

0 comments on commit bc214ba

Please sign in to comment.