Skip to content

Commit c480c3e

Browse files
authored
Merge V1.0.5-gasLimitFix to releases/v1.0.5 (#1062)
* Hardcoded gas limit for reveal (#1060) * Updated version to v1.0.5-patch2 (#1061)
1 parent f20438c commit c480c3e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

cmd/reveal.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ func (*UtilsStruct) Reveal(client *ethclient.Client, config types.Configurations
6161
Parameters: []interface{}{epoch, treeRevealData, signature},
6262
})
6363
log.Debugf("Executing Reveal transaction wih epoch = %d, treeRevealData = %v, signature = %v", epoch, treeRevealData, signature)
64+
txnOpts.GasLimit = 50000000
6465
txn, err := voteManagerUtils.Reveal(client, txnOpts, epoch, treeRevealData, signature)
6566
if err != nil {
6667
log.Error(err)

core/version.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package core
33
import "fmt"
44

55
const (
6-
VersionMajor = 1 // Major version component of the current release
7-
VersionMinor = 0 // Minor version component of the current release
8-
VersionPatch = 5 // Patch version component of the current release
9-
VersionMeta = "" // Version metadata to append to the version string
6+
VersionMajor = 1 // Major version component of the current release
7+
VersionMinor = 0 // Minor version component of the current release
8+
VersionPatch = 5 // Patch version component of the current release
9+
VersionMeta = "patch2" // Version metadata to append to the version string
1010
)
1111

1212
// Version holds the textual version string.

0 commit comments

Comments
 (0)