Skip to content

Commit

Permalink
fix: match builtin-actor DelegateCallParams struct (#157)
Browse files Browse the repository at this point in the history
- brings types inline with those present in builtin-actors#dev/20230117-pre-rc.4
  • Loading branch information
frrist authored Jan 27, 2023
1 parent 968d8b4 commit a033ff1
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 5 deletions.
54 changes: 52 additions & 2 deletions builtin/v10/evm/cbor_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions builtin/v10/evm/evm_types.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package evm

import "github.com/ipfs/go-cid"
import (
"github.com/ipfs/go-cid"

"github.com/filecoin-project/go-state-types/abi"
)

type ConstructorParams struct {
Creator []byte
Expand All @@ -14,6 +18,8 @@ type GetStorageAtParams struct {
}

type DelegateCallParams struct {
Code cid.Cid
Input []byte
Code cid.Cid
Input []byte
Caller [20]byte
Value abi.TokenAmount
}

0 comments on commit a033ff1

Please sign in to comment.