mirror of
https://github.com/tendermint/tendermint.git
synced 2026-05-30 10:56:20 +00:00
saving development state...
This commit is contained in:
@@ -6,11 +6,11 @@ type String string
|
||||
|
||||
// String
|
||||
|
||||
func (self String) Equals(other Binary) bool {
|
||||
func (self String) Equals(other interface{}) bool {
|
||||
return self == other
|
||||
}
|
||||
|
||||
func (self String) Less(other Binary) bool {
|
||||
func (self String) Less(other interface{}) bool {
|
||||
if o, ok := other.(String); ok {
|
||||
return self < o
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user