mirror of
https://github.com/tendermint/tendermint.git
synced 2026-09-06 16:17:11 +00:00
* tendermint/binary handles fixed-length arrays
* log-event tests
This commit is contained in:
+4
-16
@@ -18,6 +18,10 @@ func EventStringAccReceive(addr []byte) string {
|
||||
return fmt.Sprintf("Acc/%X/Receive", addr)
|
||||
}
|
||||
|
||||
func EventStringLogEvent(addr []byte) string {
|
||||
return fmt.Sprintf("Log/%X", addr)
|
||||
}
|
||||
|
||||
func EventStringBond() string {
|
||||
return "Bond"
|
||||
}
|
||||
@@ -66,19 +70,3 @@ type EventMsgCall struct {
|
||||
Return []byte `json:"return"`
|
||||
Exception string `json:"exception"`
|
||||
}
|
||||
|
||||
/*
|
||||
Acc/XYZ/Input -> full tx or {full tx, return value, exception}
|
||||
Acc/XYZ/Output -> full tx
|
||||
Acc/XYZ/Receive -> full tx, return value, exception, (optionally?) calldata
|
||||
Bond -> full tx
|
||||
Unbond -> full tx
|
||||
Rebond -> full tx
|
||||
Dupeout -> full tx
|
||||
NewBlock -> full block
|
||||
Fork -> block A, block B
|
||||
|
||||
Log -> Fuck this
|
||||
NewPeer -> peer
|
||||
Alert -> alert msg
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user