Skip to content

Commit

Permalink
fix name (#70)
Browse files Browse the repository at this point in the history
Co-authored-by: xinran chen <[email protected]>
  • Loading branch information
Lawliet-Chan and xinran chen committed Jul 3, 2023
1 parent 3595763 commit a97e515
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/result/error.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (e *Error) Hash() (Hash, error) {
func (e *Error) Error() (str string) {
if e.BlockStage == ExecuteTxnsStage {
str = fmt.Sprintf(
"[Error] Caller(%s) call Tripod(%s) Execution(%s) in Block(%s) on Height(%d): %s",
"[Error] Caller(%s) call Tripod(%s) Writing(%s) in Block(%s) on Height(%d): %s",
e.Caller.String(),
e.TripodName,
e.WritingName,
Expand Down
2 changes: 1 addition & 1 deletion core/result/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (e *Event) Type() ResultType {
func (e *Event) Sprint() (str string) {
if e.BlockStage == ExecuteTxnsStage {
str = fmt.Sprintf(
"[Event] Caller(%s) call Tripod(%s) Execution(%s) in Block(%s) on Height(%d): %s",
"[Event] Caller(%s) call Tripod(%s) Writing(%s) in Block(%s) on Height(%d): %s",
e.Caller.String(),
e.TripodName,
e.WritingName,
Expand Down
2 changes: 1 addition & 1 deletion core/url.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
)

const (
// RootApiPath For developers, every customized Execution and Read of tripods
// RootApiPath For developers, every customized Writing and Read of tripods
// will base on '/api'.
RootApiPath = "/api"

Expand Down

0 comments on commit a97e515

Please sign in to comment.