Skip to content

Commit fa03af8

Browse files
committed
increase version for golang 1.7 release
1 parent eadd510 commit fa03af8

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

common/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const (
3333
// maxProtocolVersion is the max protocol version the peer supports.
3434
//Common constants
3535
VERSION_0 = byte(0)
36-
FACTOMD_VERSION = 3007000 //fixed point. resolves to 0.<minor1 release>.<minor2 release>.<minor3 release>
36+
FACTOMD_VERSION = 3008000 //fixed point. resolves to 0.<minor1 release>.<minor2 release>.<minor3 release>
3737
NETWORK_ID_DB = uint32(4203931041) //0xFA92E5A1
3838
NETWORK_ID_EB = uint32(4203931042) //0xFA92E5A2
3939
NETWORK_ID_CB = uint32(4203931043) //0xFA92E5A3

factomd/factomd.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,10 @@ func isCompilerVersionOK() bool {
186186
if strings.Contains(runtime.Version(), "1.6") {
187187
goodenough = true
188188
}
189+
190+
if strings.Contains(runtime.Version(), "1.7") {
191+
goodenough = true
192+
}
189193

190194
return goodenough
191195
}

0 commit comments

Comments
 (0)