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

Commit bc214ba

Browse files
committed
Update CoinConfig schema
1 parent b2c8391 commit bc214ba

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

schema/configuration.go

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,17 @@ type WalletsConfig struct {
3939
}
4040

4141
type CoinConfig struct {
42-
Type string `json:"Type"`
43-
APIPool []string `json:"API"`
44-
APITestnetPool []string `json:"APITestnet"`
45-
MaxFee uint64 `json:"MaxFee"`
46-
FeeAPI string `json:"FeeAPI"`
47-
HighFeeDefault uint64 `json:"HighFeeDefault"`
48-
MediumFeeDefault uint64 `json:"MediumFeeDefault"`
49-
LowFeeDefault uint64 `json:"LowFeeDefault"`
50-
TrustedPeer string `json:"TrustedPeer"`
51-
WalletOptions map[string]interface{} `json:"WalletOptions"`
42+
Type string `json:"Type"`
43+
APIPool []string `json:"API"`
44+
APITestnetPool []string `json:"APITestnet"`
45+
MaxFee uint64 `json:"MaxFee"`
46+
FeeAPI string `json:"FeeAPI"`
47+
SuperLowFeeDefault uint64 `json:"SuperLowFeeDefault"`
48+
HighFeeDefault uint64 `json:"HighFeeDefault"`
49+
MediumFeeDefault uint64 `json:"MediumFeeDefault"`
50+
LowFeeDefault uint64 `json:"LowFeeDefault"`
51+
TrustedPeer string `json:"TrustedPeer"`
52+
WalletOptions map[string]interface{} `json:"WalletOptions"`
5253
}
5354

5455
type DataSharing struct {

0 commit comments

Comments
 (0)