Skip to content

Commit

Permalink
Merge pull request #12 from CESSProject/f_0.1.0
Browse files Browse the repository at this point in the history
Update version number and transaction result description
  • Loading branch information
AstaFrode authored Nov 20, 2022
2 parents 96be126 + 08bac39 commit 20bdbdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
14 changes: 2 additions & 12 deletions configs/configs.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,8 @@ const (
)

const (
// Maximum number of connections in the miner's certification space
MAX_TCP_CONNECTION uint8 = 3
// Tcp client connection interval
TCP_Connection_Interval = time.Duration(time.Millisecond * 100)
// Tcp message interval
TCP_Message_Interval = time.Duration(time.Millisecond * 10)
// Tcp short message waiting time
TCP_Time_WaitNotification = time.Duration(time.Second * 10)
// Tcp short message waiting time
TCP_FillerMessage_WaitingTime = time.Duration(time.Second * 150)
// The slowest tcp transfers bytes per second
TCP_Transmission_Slowest = SIZE_1KiB * 10
// Number of tcp message caches
TCP_Message_Send_Buffers = 10
TCP_Message_Read_Buffers = 10
Expand All @@ -76,10 +66,10 @@ const (
HELP_common = `Please check with the following help information:
1.Check if the wallet balance is sufficient
2.Block hash:`
HELP_register = ` 3.Check the FileMap.RegistrationScheduler transaction event result in the block hash above:
HELP_register = ` 3.Check the FileMap.OssRegister transaction event result in the block hash above:
If system.ExtrinsicFailed is prompted, it means failure;
If system.ExtrinsicSuccess is prompted, it means success;`
HELP_update = ` 3.Check the FileMap.UpdateScheduler transaction event result in the block hash above:
HELP_update = ` 3.Check the FileMap.OssUpdate transaction event result in the block hash above:
If system.ExtrinsicFailed is prompted, it means failure;
If system.ExtrinsicSuccess is prompted, it means success;`
)
Expand Down
2 changes: 1 addition & 1 deletion configs/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (
// Name space
NameSpace = Name
// version
Version = Name + " " + "v0.1.0"
Version = Name + " " + "v0.1.1"
// description
Description = "Implementation of object storage service based on cess platform"
)
Expand Down

0 comments on commit 20bdbdb

Please sign in to comment.