Commit 067e75b
authored
fix(gmp): fix keeper initialization and packet unmarshaling (#8660)
Fix two critical bugs in ICS27-GMP module:
1. keeper: Initialize msgRouter and accountKeeper fields that were
being passed to NewKeeper but not assigned to the keeper struct,
causing nil pointer panics when routing messages
2. packet: Fix UnmarshalPacketData to use correct Go unmarshal pattern
by initializing pointer before passing to json.Unmarshal instead of
passing pointer-to-pointer1 parent c9a2f3c commit 067e75b
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
| 80 | + | |
81 | 81 | | |
82 | 82 | | |
83 | | - | |
| 83 | + | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
| |||
0 commit comments