File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -1050,13 +1050,14 @@ type callmsg struct {
1050
1050
}
1051
1051
1052
1052
// accessor boilerplate to implement core.Message
1053
- func (m callmsg ) From () (common.Address , error ) { return m .from .Address (), nil }
1054
- func (m callmsg ) Nonce () uint64 { return m .from .Nonce () }
1055
- func (m callmsg ) To () * common.Address { return m .to }
1056
- func (m callmsg ) GasPrice () * big.Int { return m .gasPrice }
1057
- func (m callmsg ) Gas () * big.Int { return m .gas }
1058
- func (m callmsg ) Value () * big.Int { return m .value }
1059
- func (m callmsg ) Data () []byte { return m .data }
1053
+ func (m callmsg ) From () (common.Address , error ) { return m .from .Address (), nil }
1054
+ func (m callmsg ) FromFrontier () (common.Address , error ) { return m .from .Address (), nil }
1055
+ func (m callmsg ) Nonce () uint64 { return m .from .Nonce () }
1056
+ func (m callmsg ) To () * common.Address { return m .to }
1057
+ func (m callmsg ) GasPrice () * big.Int { return m .gasPrice }
1058
+ func (m callmsg ) Gas () * big.Int { return m .gas }
1059
+ func (m callmsg ) Value () * big.Int { return m .value }
1060
+ func (m callmsg ) Data () []byte { return m .data }
1060
1061
1061
1062
type logQueue struct {
1062
1063
mu sync.Mutex
You can’t perform that action at this time.
0 commit comments