gofmt graphql.go

This commit is contained in:
Amit Shah 2020-02-04 14:03:09 -05:00
parent 66c2989f2b
commit f1a2f78741

View file

@ -323,7 +323,6 @@ func (t *Transaction) R(ctx context.Context) (hexutil.Big, error){
return hexutil.Big(*r), nil
}
func (t *Transaction) S(ctx context.Context) (hexutil.Big, error) {
tx, err := t.resolve(ctx)
if err != nil || tx == nil {
@ -341,6 +340,7 @@ func (t *Transaction) V(ctx context.Context) (hexutil.Big, error){
_, _, v := tx.RawSignatureValues()
return hexutil.Big(*v), nil
}
type BlockType int
// Block represents an Ethereum block.