Skip to content

Commit 04cfb2d

Browse files
authored
fix: In gnodTxAndRedirectToSign, need to increase gasWanted (#150)
Signed-off-by: Jeff Thompson <jeff@thefirst.org>
1 parent 10eb43f commit 04cfb2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mobile/redux/features/linkingSlice.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const gnodTxAndRedirectToSign = createAsyncThunk<void, GnodCallTxParams,
9393

9494
const fnc = "AddReaction";
9595
const gasFee = "1000000ugnot";
96-
const gasWanted = BigInt(2000000);
96+
const gasWanted = BigInt(10000000);
9797
// post.user.address is in fact a bech32 address
9898
const args: Array<string> = [String(post.user.address), String(post.id), String(post.id), String("0")];
9999
const reason = "Gnoding a message";

0 commit comments

Comments
 (0)