change gas limit to be a normal int64

This commit is contained in:
whyrusleeping
2020-03-18 13:45:37 -07:00
parent b2d4d37539
commit ddf1beac6c
36 changed files with 148 additions and 100 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ func testStorageNode(ctx context.Context, t *testing.T, waddr address.Address, a
Params: enc,
Value: types.NewInt(0),
GasPrice: types.NewInt(0),
GasLimit: types.NewInt(1000000),
GasLimit: 1000000,
}
_, err = tnd.MpoolPushMessage(ctx, msg)