diff --git a/cli/send.go b/cli/send.go index 46efadf8b..eb61b4167 100644 --- a/cli/send.go +++ b/cli/send.go @@ -62,7 +62,7 @@ var sendCmd = &cli.Command{ From: fromAddr, To: toAddr, Value: types.BigInt(val), - GasLimit: 1000, + GasLimit: 10000, GasPrice: types.NewInt(0), } diff --git a/cmd/lotus-fountain/main.go b/cmd/lotus-fountain/main.go index a09748522..6780762ff 100644 --- a/cmd/lotus-fountain/main.go +++ b/cmd/lotus-fountain/main.go @@ -190,7 +190,7 @@ func (h *handler) send(w http.ResponseWriter, r *http.Request) { To: to, GasPrice: types.NewInt(0), - GasLimit: 1000, + GasLimit: 10000, }) if err != nil { w.WriteHeader(400) @@ -256,7 +256,7 @@ func (h *handler) mkminer(w http.ResponseWriter, r *http.Request) { To: owner, GasPrice: types.NewInt(0), - GasLimit: 1000, + GasLimit: 10000, }) if err != nil { w.WriteHeader(400) diff --git a/cmd/lotus-shed/nonce-fix.go b/cmd/lotus-shed/nonce-fix.go index 8b12e4795..aaecdcf58 100644 --- a/cmd/lotus-shed/nonce-fix.go +++ b/cmd/lotus-shed/nonce-fix.go @@ -89,7 +89,7 @@ var noncefix = &cli.Command{ From: addr, To: addr, Value: types.NewInt(1), - GasLimit: 1000, + GasLimit: 10000, GasPrice: types.NewInt(1), Nonce: i, } diff --git a/lotuspond/front/src/chain/send.js b/lotuspond/front/src/chain/send.js index d09333dd6..9011aca5e 100644 --- a/lotuspond/front/src/chain/send.js +++ b/lotuspond/front/src/chain/send.js @@ -4,7 +4,7 @@ import { Tagged } from 'borc' async function pushMessage(client, from, inmsg) { if(!inmsg.GasLimit) { - inmsg.GasLimit = "1000" + inmsg.GasLimit = "10000" } if(!inmsg.GasPrice) { inmsg.GasPrice = "0" @@ -39,4 +39,4 @@ async function pushMessage(client, from, inmsg) { await client.call('Filecoin.MpoolPushMessage', [inmsg]) } -export default pushMessage \ No newline at end of file +export default pushMessage diff --git a/node/impl/paych/paych.go b/node/impl/paych/paych.go index 8676cbfd3..b08e07dbd 100644 --- a/node/impl/paych/paych.go +++ b/node/impl/paych/paych.go @@ -125,7 +125,7 @@ func (a *PaychAPI) PaychClose(ctx context.Context, addr address.Address) (cid.Ci Method: builtin.MethodsPaych.Settle, Nonce: nonce, - GasLimit: 500, + GasLimit: 10000, GasPrice: types.NewInt(0), }