Skip to content

Commit

Permalink
Merge pull request #4449 from austinabell/austin/confcircsupplyfix
Browse files Browse the repository at this point in the history
Fix circ supply default in conformance
  • Loading branch information
magik6k authored Oct 22, 2020
2 parents 6fc8550 + 70e2170 commit 29cda82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conformance/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ func BaseFeeOrDefault(basefee *gobig.Int) abi.TokenAmount {
// DefaultCirculatingSupply.
func CircSupplyOrDefault(circSupply *gobig.Int) abi.TokenAmount {
if circSupply == nil {
return DefaultBaseFee
return DefaultCirculatingSupply
}
return big.NewFromGo(circSupply)
}

0 comments on commit 29cda82

Please sign in to comment.