Remove unnecessary debug log in ethereum SendRawTransaction
This commit is contained in:
parent
2fd84dd97b
commit
a6690a0f19
@ -505,7 +505,6 @@ func (b *EthereumRPC) EstimateSmartFee(blocks int, conservative bool) (float64,
|
|||||||
func (b *EthereumRPC) SendRawTransaction(hex string) (string, error) {
|
func (b *EthereumRPC) SendRawTransaction(hex string) (string, error) {
|
||||||
ctx, cancel := context.WithTimeout(context.Background(), b.timeout)
|
ctx, cancel := context.WithTimeout(context.Background(), b.timeout)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
glog.Info("SendRawTransaction hex ", hex)
|
|
||||||
var raw json.RawMessage
|
var raw json.RawMessage
|
||||||
err := b.rpc.CallContext(ctx, &raw, "eth_sendRawTransaction", hex)
|
err := b.rpc.CallContext(ctx, &raw, "eth_sendRawTransaction", hex)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user