chore: upstream runtime/v2 (#20320)

Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
Matt Kocubinski
2024-05-14 12:43:28 +00:00
committed by GitHub
co-authored by Julien Robert
parent b4f8815426
commit 7ae23e287a
37 changed files with 5864 additions and 66 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ func (t Tx) Hash() [32]byte {
return sha256.Sum256(t.Bytes())
}
func (t Tx) GetMessages() []transaction.Msg {
return []transaction.Msg{t.Msg}
func (t Tx) GetMessages() ([]transaction.Msg, error) {
return []transaction.Msg{t.Msg}, nil
}
func (t Tx) GetSenders() ([]transaction.Identity, error) {