9 lines
200 B
Go
9 lines
200 B
Go
|
package constants
|
||
|
|
||
|
const (
|
||
|
MaxNumberOfAccounts = 20
|
||
|
MaxNumberOfKeypairs = 5 // including the profile keypair
|
||
|
MaxNumberOfWatchOnlyAccounts = 3
|
||
|
MaxNumberOfSavedAddresses = 20
|
||
|
)
|