Author

Topic: [ANN] CannabisCoin [CANN][X11][Official] Unmoderated General Discussions. - page 239. (Read 492677 times)

sr. member
Activity: 336
Merit: 250
Here is another possibility....

You could start off at 1000 cann = 1 gram. Then as buy support increases and as more dispensaries start offering cann, you could go to 500 cann = 1 gram.

Then you could go to 100, 50, 10, 1 etc.

I'm just thinking that this would solve 2 problems:

1. This would obviously solve the problem of cann having so many coins.

2. This would solve the problem of traders dumping the coin because people would want to hold on to their cann for when it goes from 1000 to 500, etc.

You could even have exact dates named where the peg would change.

sr. member
Activity: 440
Merit: 250
hey guys im looking to purchase some seeds on drgreenstore.com  Anyone familiar with them? Hoping to hear some feedback from the community Smiley
hero member
Activity: 663
Merit: 501
holy thread hijack. :-) what is the best pool for mining cann? anyone get better shares are one over the others?
sr. member
Activity: 350
Merit: 250
someone? anyone? so baked. must complete tonight. halllllp! im almost there.

just need to fix the autoconf section. cmon cmon cmon plz plz plz

 Shocked

Hey, I work with CentOS but not coding, just server maintenance with light bash scripting/awk/sed one liners, etc.

I have some experience with programming, but not a coder. I have had trouble compiling wallets on Fedora also, all instructions are for Ubuntu like that's the only distro out there.

What can I do to help, I just need a quick run down of what you have here and what needs to be done and I can probably help.
member
Activity: 68
Merit: 10
We are now at 112 vote in 1st place.  Grin
sr. member
Activity: 336
Merit: 250
I have add this coin to my p2pool server, check my sign.
P2Pool source code will come soon.

Source code: https://github.com/linked67/p2pool-cannabiscoin

and help with CentOS install?
I only use linux servers (ubuntu) and can't help with centos, sorry.
hero member
Activity: 629
Merit: 500
someone? anyone? so baked. must complete tonight. halllllp! im almost there.

just need to fix the autoconf section. cmon cmon cmon plz plz plz

 Shocked
hero member
Activity: 629
Merit: 500
well i made a new configure.ac but when i attempt to run autogen.sh it gives me:

./autogen.sh
configure.ac:175: error: possibly undefined macro: AC_CHECK_LIB
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
configure.ac:175: error: possibly undefined macro: AC_MSG_ERROR
configure.ac:492: error: possibly undefined macro: PKG_CHECK_MODULES
configure.ac:503: error: possibly undefined macro: AC_CHECK_HEADER
autoreconf: /usr/bin/autoconf failed with exit status: 1

would dev like to chime in? maybe we can complete this soon and post to git?

its almost ready.

here is my configure.ac so far

cmon dev, this should be easy if you are a coder!


my guess is m4 needs to be added in centos-install.sh

here is my centos-canna-install.sh so far:

http://pastebin.com/5VWztLSB


cmon guys, im too baked to be working on this alone. this is damn near completion!

hero member
Activity: 629
Merit: 500
here is autogen.sh:

#!/bin/sh
set -e
srcdir="$(dirname $0)"
cd "$srcdir"
autoreconf --install --force


we just need configure.ac edited for cannabiscoin:

https://github.com/dogecoin/dogecoin/blob/master/autogen.sh

is anyone capable of modifying this for cann?

member
Activity: 68
Merit: 10
I've voted...seems like we have 31 votes already.
Also nice to see casheer app and cann growing, keep it up!

Thanxs to all that voted. We are now at 69 vote in 3rd place.

I keep voting from time to time.

I think we should be in the top 2 for next saturday.

The top two coins by Total Votes are added every Saturday morning around 10am.
hero member
Activity: 629
Merit: 500
export CANNREF=master
export DEST_DIR=~/.canncoin
export CANN_BUILD_LOC=~/cann-build
 
# init env
mkdir -p $CANN_BUILD_LOC
pushd $CANN_BUILD_LOC
 
mkdir -p canncoin-deps
pushd canncoin-deps
mkdir -p lib
 
export CANN_DEPS_LOC=$CANN_BUILD_LOC/canncoin-deps
export CANN_STAGE_LOC=$CANN_DEPS_LOC/staging
 
mkdir -p $DEST_DIR
mkdir -p $DEST_DIR/lib
 
# openssl
wget 'https://www.openssl.org/source/openssl-1.0.1h.tar.gz'
echo "9d1c8a9836aa63e2c6adb684186cbd4371c9e9dcc01d6e3bb447abf2d4d3d093  openssl-1.0.1h.tar.gz"  | sha256sum -c
 
tar xzf openssl-1.0.1h.tar.gz
pushd openssl-1.0.1h
 
./config no-shared no-zlib no-dso no-krb5 --openssldir=$CANN_STAGE_LOC -fPIC
make
make install_sw
popd
 
# boost
wget 'https://downloads.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.bz2'
echo "fff00023dd79486d444c8e29922f4072e1d451fc5a4d2b6075852ead7f2b7b52  boost_1_55_0.tar.bz2"   | sha256sum -c
 
tar --warning=no-timestamp -xjf boost_1_55_0.tar.bz2
pushd boost_1_55_0
 
./bootstrap.sh --without-icu
./bjam toolset=gcc threadapi=pthread threading=multi variant=release link=static runtime-link=shared --without-mpi --without-python -sNO_BZIP2=1 --layout=tagged --build-type=complete --prefix="$CANN_STAGE_LOC" $MAKEOPTS -d+2 install
popd
 
# berkeley db
wget 'http://download.oracle.com/berkeley-db/db-5.1.29.NC.tar.gz'
echo "08238e59736d1aacdd47cfb8e68684c695516c37f4fbe1b8267dde58dc3a576c  db-5.1.29.NC.tar.gz"    | sha256sum -c
 
tar xzf db-5.1.29.NC.tar.gz
pushd db-5.1.29.NC/build_unix
 
../dist/configure --prefix="$CANN_STAGE_LOC" --enable-cxx --disable-shared --with-pic
make $MAKEOPTS library_build
make install_lib install_include
popd
 
# copy libs to dest dirs
cp -r $CANN_STAGE_LOC/lib/*.a $CANN_STAGE_LOC/lib/pkgconfig $DEST_DIR/lib/
popd
 
# canncoin
git clone https://github.com/cannabiscoindev/cannabiscoin420
pushd canncoin
git checkout $CANNREF
 
---------------------------------- here, we need an autogen.sh and configure.ac in the /blob/master/ directory. after paste i will provide 2 working examples from doge-centos-------------------------

./autogen.sh
./configure --disable-upnp-default --prefix=$DEST_DIR --with-boost=$DEST_DIR --disable-maintainer-mode --disable-dependency-tracking PKG_CONFIG_PATH="$CANN_STAGE_LOC/lib/pkgconfig" CPPFLAGS="-I$CANN_STAGE_LOC/include ${OPTFLAGS}" LDFLAGS="-L$DEST_DIR/lib ${OPTFLAGS}" CXXFLAGS="${OPTFLAGS}" BOOST_CHRONO_EXTRALIBS="-lrt"
pushd src
make canncoind canncoin-cli
 
strip canncoind
strip canncoin-cli
cp canncoind canncoin-cli $DEST_DIR
 
popd
popd
popd
 
rm -rf cann-build


-----------------------------------------------------below are 2 examples of autogen.sh and configure.ac for dogecoin-centos-compile-----------------------------------------------------------------

https://github.com/dogecoin/dogecoin/blob/master/configure.ac

https://github.com/dogecoin/dogecoin/blob/master/autogen.sh



hero member
Activity: 629
Merit: 500
I have add this coin to my p2pool server, check my sign.
P2Pool source code will come soon.

Source code: https://github.com/linked67/p2pool-cannabiscoin

and help with CentOS install?

 where's the trouble? i'm no lin expert, but there are many around here, fire away!  Wink

i sent you a pm.

legendary
Activity: 1894
Merit: 1001
I have add this coin to my p2pool server, check my sign.
P2Pool source code will come soon.

Source code: https://github.com/linked67/p2pool-cannabiscoin

and help with CentOS install?

 where's the trouble? i'm no lin expert, but there are many around here, fire away!  Wink
sr. member
Activity: 440
Merit: 250
any plans to work in areas where it is legal, I mean geographic areas and services, that provide cannabis. Is it in work or in plan?

IIRC they are already working with someone in WA. Not sure though.  Would like to see it hit OR/WA early as there are a TON of supporters here and OR is next on the legalization front.
hero member
Activity: 629
Merit: 500
I have add this coin to my p2pool server, check my sign.
P2Pool source code will come soon.

Source code: https://github.com/linked67/p2pool-cannabiscoin

and help with CentOS install?
sr. member
Activity: 336
Merit: 250
I have add this coin to my p2pool server, check my sign.
P2Pool source code will come soon.

Source code: https://github.com/linked67/p2pool-cannabiscoin
hero member
Activity: 602
Merit: 500
newbie
Activity: 30
Merit: 0
any plans to work in areas where it is legal, I mean geographic areas and services, that provide cannabis. Is it in work or in plan?
sr. member
Activity: 336
Merit: 250
I have add this coin to my p2pool server, check my sign.
P2Pool source code will come soon.
hero member
Activity: 629
Merit: 500
dev, or anyone on here with CentOS 6.5, can you write an autogen.sh

and configure.ac for centos daemon compiling, since it varies from ubuntu/unix?

https://github.com/dogecoin/dogecoin/blob/master/configure.ac

https://github.com/dogecoin/dogecoin/blob/master/autogen.sh

^ this is what i mean. CentOS installs are difficult sometimes, this will help exchanges and pools running CentOS

this is what auto-install gist looks like after those are complete:

https://gist.github.com/patricklodder/c7c067cc831f0d3190c2#file-build-dogecoin-sh
Jump to: