Skip to content

Commit

Permalink
relayer increase gas limit, still cant estimate, and show loader if t…
Browse files Browse the repository at this point in the history
…here are pending transcations
  • Loading branch information
cyberhorsey committed Dec 26, 2022
1 parent 4b0893e commit a0463c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/bridge-ui/src/components/form/BridgeForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@
>
{$_("home.bridge")}
</button>
{:else if loading}
{:else if loading || $pendingTransactions.length}
<button class="btn btn-accent w-full" disabled={true}>
<LottiePlayer
src="/lottie/loader.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/relayer/message/process_message.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (p *Processor) sendProcessMessageCall(
// auth.GasLimit = gas
// log.Infof("gasLimit: %v", gas)
// }
auth.GasLimit = 800000
auth.GasLimit = 1200000

// process the message on the destination bridge.
tx, err := p.destBridge.ProcessMessage(auth, event.Message, proof)
Expand Down

0 comments on commit a0463c0

Please sign in to comment.