Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

chain: increased oracle script execution gas limit #2141

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

### Chain

- (impv) [\#2141](https://github.com/bandprotocol/bandchain/pull/2141/files) Increased oracle script execution gas limit
- (impv) [\#2132](https://github.com/bandprotocol/bandchain/pull/2132) Implement emitter handler for bank messages.
- (patch) [\#2135](https://github.com/bandprotocol/bandchain/pull/2135) Bump Cosmos-SDK to version 0.38.5.
- (impv) [\#2128](https://github.com/bandprotocol/bandchain/pull/2128) Add expired request check when report and change type of `requestTime`.
Expand Down
2 changes: 1 addition & 1 deletion chain/x/oracle/types/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const (
MaxDataSize = 1 * 1024 // 1kB

WasmPrepareGas = 100000
WasmExecuteGas = 100000
WasmExecuteGas = 1000000
)

// nolint
Expand Down